From a338610575cd69a1b0377d06fe201df4c4032ee9 Mon Sep 17 00:00:00 2001 From: Christian Persch Date: Sat, 17 Jul 2004 14:34:38 +0000 Subject: Since the print dialogue is modal the filechooser needs to be modal too. 2004-07-17 Christian Persch * 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. --- ChangeLog | 7 +++++++ embed/print-dialog.c | 1 + 2 files changed, 8 insertions(+) diff --git a/ChangeLog b/ChangeLog index 08d4fa3d8..dfb36cb29 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2004-07-17 Christian Persch + + * 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-14 Marco Pesenti Gritti * lib/widgets/ephy-node-view.c: (compare_string_values), 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)); } -- cgit