diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | src/totem.c | 5 |
2 files changed, 12 insertions, 0 deletions
@@ -1,5 +1,12 @@ 2002-11-25 Bastien Nocera <hadess@hadess.net> + * src/totem.c: (totem_action_handle_key): add 'O' and 'o' (that's the + letter 'o' not zero), switches to window mode, and opens the file + selector (Closes: #99520) (it's not possible to do that kind of thing + in fullscreen mode properly) + +2002-11-25 Bastien Nocera <hadess@hadess.net> + * data/totem.glade: remove the word stream from the interface 2002-11-24 Bastien Nocera <hadess@hadess.net> diff --git a/src/totem.c b/src/totem.c index b210f5b14..2dda145ec 100644 --- a/src/totem.c +++ b/src/totem.c @@ -1450,6 +1450,11 @@ totem_action_handle_key (Totem *totem, guint keyval) case GDK_F: totem_action_fullscreen_toggle (totem); break; + case GDK_O: + case GDK_o: + totem_action_fullscreen (totem, FALSE); + on_open1_activate (NULL, (gpointer) totem); + break; case GDK_Left: totem_action_seek_relative (totem, SEEK_BACKWARD_OFFSET); break; |