summaryrefslogtreecommitdiff
path: root/softhddevice.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'softhddevice.cpp')
-rw-r--r--softhddevice.cpp14
1 files changed, 13 insertions, 1 deletions
diff --git a/softhddevice.cpp b/softhddevice.cpp
index 33540b8..a94aaa7 100644
--- a/softhddevice.cpp
+++ b/softhddevice.cpp
@@ -844,6 +844,15 @@ static void HandleHotkey(int code)
case 12: // toggle pass-through
CodecSetAudioPassthrough(ConfigAudioPassthrough ^= 1);
break;
+ case 20: // disable full screen
+ VideoSetFullscreen(0);
+ break;
+ case 21: // enable full screen
+ VideoSetFullscreen(1);
+ break;
+ case 22: // toggle full screen
+ VideoSetFullscreen(-1);
+ break;
default:
esyslog(tr("[softhddev]: hot key %d is not supported\n"), code);
break;
@@ -1769,7 +1778,10 @@ static const char *SVDRPHelpText[] = {
" key is the hotkey number, following are supported:\n"
" 10: disable audio pass-through\n"
" 11: enable audio pass-through\n"
- " 12: toggle audio pass-through\n",
+ " 12: toggle audio pass-through\n"
+ " 20: disable fullscreen\n"
+ " 21: enable fullscreen\n"
+ " 22: toggle fullscreen\n",
NULL
};