diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2002-05-24 05:32:14 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2002-05-24 05:32:14 +0800 |
commit | 8de7c80602afe941093b4ef408b2805601abac38 (patch) | |
tree | d090b6c48fdae756559881ed1dff7df32ea0c6be /shell/e-shell-folder-selection-dialog.c | |
parent | 0886e86bdf598ca55ca61d3e643d8afc3bd9f3b6 (diff) | |
download | gsoc2013-evolution-8de7c80602afe941093b4ef408b2805601abac38.tar.gz gsoc2013-evolution-8de7c80602afe941093b4ef408b2805601abac38.tar.zst gsoc2013-evolution-8de7c80602afe941093b4ef408b2805601abac38.zip |
Pass FALSE for @allow_shrink. Fixes #15688.
* e-shell-folder-selection-dialog.c
(e_shell_folder_selection_dialog_construct): Pass FALSE for
@allow_shrink. Fixes #15688.
svn path=/trunk/; revision=16993
Diffstat (limited to 'shell/e-shell-folder-selection-dialog.c')
-rw-r--r-- | shell/e-shell-folder-selection-dialog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/e-shell-folder-selection-dialog.c b/shell/e-shell-folder-selection-dialog.c index d653e31522..e3e5d6e3d0 100644 --- a/shell/e-shell-folder-selection-dialog.c +++ b/shell/e-shell-folder-selection-dialog.c @@ -363,7 +363,7 @@ e_shell_folder_selection_dialog_construct (EShellFolderSelectionDialog *folder_s /* Basic dialog setup. */ - gtk_window_set_policy (GTK_WINDOW (folder_selection_dialog), TRUE, TRUE, FALSE); + gtk_window_set_policy (GTK_WINDOW (folder_selection_dialog), FALSE, TRUE, FALSE); gtk_window_set_default_size (GTK_WINDOW (folder_selection_dialog), 350, 300); gtk_window_set_modal (GTK_WINDOW (folder_selection_dialog), TRUE); gtk_window_set_title (GTK_WINDOW (folder_selection_dialog), title); |