aboutsummaryrefslogtreecommitdiffstats
path: root/embed
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2004-07-17 22:34:38 +0800
committerChristian Persch <chpe@src.gnome.org>2004-07-17 22:34:38 +0800
commita338610575cd69a1b0377d06fe201df4c4032ee9 (patch)
tree12f654b9aa65f227b1e790b2b6663a569180ffbf /embed
parentcde02d089c8022bed5e0b4cd49f9e93954b9a9a0 (diff)
downloadgsoc2013-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')
-rwxr-xr-xembed/print-dialog.c1
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));
}