2007-01-31 Esteban Sanchez <esteban@steve-0.com>
* shell/ev-view.c: (ev_view_zoom_in), (ev_view_zoom_out):
Do not zoom in or out on presentation mode. Fixes bug #401305.
svn path=/trunk/; revision=2281
+2007-01-31 Esteban Sanchez <esteban@steve-0.com>
+
+ * shell/ev-view.c: (ev_view_zoom_in), (ev_view_zoom_out):
+
+ Do not zoom in or out on presentation mode. Fixes bug #401305.
+
2007-01-30 Nickolay V. Shmyrev <nshmyrev@yandex.ru>
* shell/ev-navigation-action.c: (connect_proxy),
{
g_return_if_fail (view->sizing_mode == EV_SIZING_FREE);
+ if (view->presentation)
+ return;
+
view->pending_scroll = SCROLL_TO_CENTER;
ev_view_set_zoom (view, ZOOM_IN_FACTOR, TRUE);
}
{
g_return_if_fail (view->sizing_mode == EV_SIZING_FREE);
+ if (view->presentation)
+ return;
+
view->pending_scroll = SCROLL_TO_CENTER;
ev_view_set_zoom (view, ZOOM_OUT_FACTOR, TRUE);
}