summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2002-11-25 18:32:18 +0000
committerBastien Nocera <hadess@src.gnome.org>2002-11-25 18:32:18 +0000
commitb7751091810bbad86581458c64283927e152110d (patch)
treecb0caebc0f815ebf2a281abd2aa3d4ed4d68c0ab
parent21192880fec0ff8f786c4444d482a5e231cc6aae (diff)
downloadtotem-b7751091810bbad86581458c64283927e152110d.tar.gz
add 'O' and 'o' (that's the letter 'o' not zero), switches to window mode,
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)
-rw-r--r--ChangeLog7
-rw-r--r--src/totem.c5
2 files changed, 12 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 7430d1e2a..aaaa47b57 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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;