diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-07-17 22:34:38 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-07-17 22:34:38 +0800 |
commit | a338610575cd69a1b0377d06fe201df4c4032ee9 (patch) | |
tree | 12f654b9aa65f227b1e790b2b6663a569180ffbf /embed/print-dialog.c | |
parent | cde02d089c8022bed5e0b4cd49f9e93954b9a9a0 (diff) | |
download | gsoc2013-epiphany-a338610575cd69a1b0377d06fe201df4c4032ee9.tar gsoc2013-epiphany-a338610575cd69a1b0377d06fe201df4c4032ee9.tar.gz gsoc2013-epiphany-a338610575cd69a1b0377d06fe201df4c4032ee9.tar.bz2 gsoc2013-epiphany-a338610575cd69a1b0377d06fe201df4c4032ee9.tar.lz gsoc2013-epiphany-a338610575cd69a1b0377d06fe201df4c4032ee9.tar.xz gsoc2013-epiphany-a338610575cd69a1b0377d06fe201df4c4032ee9.tar.zst gsoc2013-epiphany-a338610575cd69a1b0377d06fe201df4c4032ee9.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.
Diffstat (limited to 'embed/print-dialog.c')
-rwxr-xr-x | embed/print-dialog.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/embed/print-dialog.c b/embed/print-dialog.c index c752a8ce0..0aa921a05 100755 --- a/embed/print-dialog.c +++ b/embed/print-dialog.c @@ -277,6 +277,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)); } |