aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2004-07-17 22:36:02 +0800
committerChristian Persch <chpe@src.gnome.org>2004-07-17 22:36:02 +0800
commit9e23a323ae594594d3b82b70215f0c786900dd8f (patch)
tree273805cb610cc4c085a4d90c1af49103acd59f5a
parente3745955787160572f5bc2feb46f293c0f96894f (diff)
downloadgsoc2013-epiphany-9e23a323ae594594d3b82b70215f0c786900dd8f.tar
gsoc2013-epiphany-9e23a323ae594594d3b82b70215f0c786900dd8f.tar.gz
gsoc2013-epiphany-9e23a323ae594594d3b82b70215f0c786900dd8f.tar.bz2
gsoc2013-epiphany-9e23a323ae594594d3b82b70215f0c786900dd8f.tar.lz
gsoc2013-epiphany-9e23a323ae594594d3b82b70215f0c786900dd8f.tar.xz
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--ChangeLog7
-rwxr-xr-xembed/print-dialog.c1
2 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 4ad9a4623..1b4e37974 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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));
}