* shell/ev-view.c: (ev_view_scroll):
Fix for the bug #334854, page down and page up switch
pages in presentation mode.
+2006-03-21 Nickolay V. Shmyrev <nshmyrev@yandex.ru>
+
+ * shell/ev-view.c: (ev_view_scroll):
+
+ Fix for the bug #334854, page down and page up switch
+ pages in presentation mode.
+
2006-03-21 Nickolay V. Shmyrev <nshmyrev@yandex.ru>
* shell/ev-window.c: (ev_window_set_action_sensitive),
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;