diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-07-17 22:36:02 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-07-17 22:36:02 +0800 |
commit | 9e23a323ae594594d3b82b70215f0c786900dd8f (patch) | |
tree | 273805cb610cc4c085a4d90c1af49103acd59f5a | |
parent | e3745955787160572f5bc2feb46f293c0f96894f (diff) | |
download | gsoc2013-epiphany-9e23a323ae594594d3b82b70215f0c786900dd8f.tar.gz gsoc2013-epiphany-9e23a323ae594594d3b82b70215f0c786900dd8f.tar.zst gsoc2013-epiphany-9e23a323ae594594d3b82b70215f0c786900dd8f.zip |
Since the print dialogue is modal the filechooser needs to be modal too.
2004-07-17 Christian Persch <chpe@cvs.gnome.org>
* embed/print-dialog.c: (ephy_print_dialog_browse_button_cb):
Since the print dialogue is modal the filechooser needs to be modal
too. Fixes bug #147628.
-rw-r--r-- | ChangeLog | 7 | ||||
-rwxr-xr-x | embed/print-dialog.c | 1 |
2 files changed, 8 insertions, 0 deletions
@@ -1,3 +1,10 @@ +2004-07-17 Christian Persch <chpe@cvs.gnome.org> + + * embed/print-dialog.c: (ephy_print_dialog_browse_button_cb): + + Since the print dialogue is modal the filechooser needs to be modal + too. Fixes bug #147628. + 2004-07-10 Christian Persch <chpe@cvs.gnome.org> * configure.in: diff --git a/embed/print-dialog.c b/embed/print-dialog.c index b9de37e7b..c2c6699d3 100755 --- a/embed/print-dialog.c +++ b/embed/print-dialog.c @@ -263,6 +263,7 @@ ephy_print_dialog_browse_button_cb (GtkWidget *widget, G_CALLBACK (print_filechooser_response_cb), dialog); + gtk_window_set_modal (GTK_WINDOW (fc), TRUE); gtk_widget_show (GTK_WIDGET (fc)); } |