Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorNickolay V. Shmyrev <nshmyrev@src.gnome.org>2006-03-21 17:54:29 (GMT)
committer Nickolay V. Shmyrev <nshmyrev@src.gnome.org>2006-03-21 17:54:29 (GMT)
commitf248f375c5d1d85724cf59f1dc8e33dab39a69d7 (patch)
treee3298270206637f9d84c36974c71f38b1dde9df4 /shell
parentf5936cf33e5514abbc2f2fa16bfb9ac049acc106 (diff)
Fix for the bug #334854, page down and page up switch pages in
* shell/ev-view.c: (ev_view_scroll): Fix for the bug #334854, page down and page up switch pages in presentation mode.
Diffstat (limited to 'shell')
-rw-r--r--shell/ev-view.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/shell/ev-view.c b/shell/ev-view.c
index d8a8024..8ac8aa7 100644
--- a/shell/ev-view.c
+++ b/shell/ev-view.c
@@ -574,9 +574,11 @@ ev_view_scroll (EvView *view,
if (view->presentation) {
switch (scroll) {
+ case EV_SCROLL_PAGE_BACKWARD:
case EV_SCROLL_STEP_BACKWARD:
ev_view_previous_page (view);
break;
+ case EV_SCROLL_PAGE_FORWARD:
case EV_SCROLL_STEP_FORWARD:
ev_view_next_page (view);
break;