aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--voctogui/README.md5
-rw-r--r--voctogui/lib/videopreviews.py3
2 files changed, 8 insertions, 0 deletions
diff --git a/voctogui/README.md b/voctogui/README.md
index 6c5fd84..cf907e2 100644
--- a/voctogui/README.md
+++ b/voctogui/README.md
@@ -19,6 +19,11 @@
- `Ctrl+2` Source Nr. 2
- …
+### Set Fullscteen
+- `Alt+1` Source Nr. 1
+- `Alt+2` Source Nr. 2
+- …
+
### Other options
- `t` Cut
diff --git a/voctogui/lib/videopreviews.py b/voctogui/lib/videopreviews.py
index fe41aea..3490a4d 100644
--- a/voctogui/lib/videopreviews.py
+++ b/voctogui/lib/videopreviews.py
@@ -87,6 +87,9 @@ class VideoPreviewsController(object):
btn_fullscreen.connect('clicked', self.btn_fullscreen_clicked)
+ key, mod = Gtk.accelerator_parse('<Alt>%u' % (idx+1))
+ btn_fullscreen.add_accelerator('activate', accelerators, key, mod, Gtk.AccelFlags.VISIBLE)
+
self.preview_players[source] = player
self.previews[source] = preview
self.a_btns[source] = btn_a