diff options
-rw-r--r-- | shell/ChangeLog | 5 | ||||
-rw-r--r-- | shell/main.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index c1860256f7..ff6159fec6 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,5 +1,10 @@ 2002-05-23 Ettore Perazzoli <ettore@ximian.com> + * main.c (quit_box_new): Set @allow_shrink and @allow_grow to + FALSE for the window. Fixes #17534. + +2002-05-23 Ettore Perazzoli <ettore@ximian.com> + * e-shell-folder-selection-dialog.c (e_shell_folder_selection_dialog_construct): Pass FALSE for @allow_shrink. Fixes #15688. diff --git a/shell/main.c b/shell/main.c index b9deb26194..7e824ba990 100644 --- a/shell/main.c +++ b/shell/main.c @@ -79,6 +79,7 @@ quit_box_new (void) GtkWidget *frame; window = gtk_window_new (GTK_WINDOW_TOPLEVEL); + gtk_window_set_policy (GTK_WINDOW (window), FALSE, FALSE, FALSE); gtk_window_set_position (GTK_WINDOW (window), GTK_WIN_POS_CENTER); /* (Just to prevent smart-ass window managers like Sawfish from setting |