From: Carlos Garcia Campos Date: Mon, 23 May 2011 16:00:24 +0000 (+0200) Subject: libview: Fix goto window in presentation mode X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?p=evince.git;a=commitdiff_plain;h=987aab6f6faa7bb18c89aa899e459c11ee79ef3d libview: Fix goto window in presentation mode It wasn't correctly set as modal. --- diff --git a/libview/ev-view-presentation.c b/libview/ev-view-presentation.c index 53acf2f3..8694e5e3 100644 --- a/libview/ev-view-presentation.c +++ b/libview/ev-view-presentation.c @@ -649,9 +649,9 @@ ev_view_presentation_goto_window_create (EvViewPresentation *pview) GtkWindow *toplevel, *goto_window; toplevel = GTK_WINDOW (gtk_widget_get_toplevel (GTK_WIDGET (pview))); - goto_window = GTK_WINDOW (pview->goto_window); if (pview->goto_window) { + goto_window = GTK_WINDOW (pview->goto_window); if (gtk_window_has_group (toplevel)) gtk_window_group_add_window (gtk_window_get_group (toplevel), goto_window); else if (gtk_window_has_group (goto_window)) @@ -661,6 +661,7 @@ ev_view_presentation_goto_window_create (EvViewPresentation *pview) } pview->goto_window = gtk_window_new (GTK_WINDOW_POPUP); + goto_window = GTK_WINDOW (pview->goto_window); gtk_window_set_screen (goto_window, gtk_widget_get_screen (GTK_WIDGET (pview))); if (gtk_window_has_group (toplevel))