From: Carlos Garcia Campos Date: Wed, 16 Jun 2010 10:53:53 +0000 (+0200) Subject: [shell] Reload presentation view when document changes X-Git-Tag: EVINCE_2_31_4~29 X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=commitdiff_plain;h=65f4c3cf495bcf8eddb00f140440093a94e3795f;p=evince.git [shell] Reload presentation view when document changes Fixes bug #621750. --- diff --git a/shell/ev-window.c b/shell/ev-window.c index 0cfbbb38..46ccffb6 100644 --- a/shell/ev-window.c +++ b/shell/ev-window.c @@ -1300,6 +1300,12 @@ ev_window_set_document (EvWindow *ev_window, EvDocument *document) _("The document contains only empty pages")); } + if (EV_WINDOW_IS_PRESENTATION (ev_window)) { + gtk_widget_destroy (ev_window->priv->presentation_view); + ev_window->priv->presentation_view = NULL; + ev_window_run_presentation (ev_window); + } + if (ev_window->priv->setup_document_idle > 0) g_source_remove (ev_window->priv->setup_document_idle);