Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarlos Garcia Campos <carlosgc@gnome.org>2008-10-17 10:58:41 (GMT)
committer Carlos Garcia Campos <carlosgc@src.gnome.org>2008-10-17 10:58:41 (GMT)
commit431f6e56c1b2f1c2353a203133696a9cb7c8ec8a (patch)
tree47c09b2e3dacedee379acf6a816b0130cd124ca6
parent5b55c6afc5ba271aea0e04fa00ff92291290260c (diff)
Disable toggle function of F5 when in presentation mode. Patch by Dave
2008-10-17 Carlos Garcia Campos <carlosgc@gnome.org> * shell/ev-window.c: (ev_window_cmd_view_presentation): Disable toggle function of F5 when in presentation mode. Patch by Dave Neary. Fixes bug #556162. svn path=/trunk/; revision=3224
-rw-r--r--ChangeLog7
-rw-r--r--shell/ev-window.c2
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index e05c184..0ca418f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
2008-10-17 Carlos Garcia Campos <carlosgc@gnome.org>
+ * shell/ev-window.c: (ev_window_cmd_view_presentation):
+
+ Disable toggle function of F5 when in presentation mode. Patch by
+ Dave Neary. Fixes bug #556162.
+
+2008-10-17 Carlos Garcia Campos <carlosgc@gnome.org>
+
* shell/ev-sidebar-thumbnails.c: (ev_sidebar_thumbnails_dispose),
(ev_sidebar_thumbnails_get_loading_icon), (clear_range),
(ev_sidebar_thumbnails_fill_model),
diff --git a/shell/ev-window.c b/shell/ev-window.c
index 0b2fd18..ca4f81b 100644
--- a/shell/ev-window.c
+++ b/shell/ev-window.c
@@ -3053,8 +3053,6 @@ ev_window_cmd_view_presentation (GtkAction *action, EvWindow *window)
presentation = gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action));
if (presentation) {
ev_window_run_presentation (window);
- } else {
- ev_window_stop_presentation (window, TRUE);
}
}