diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-10-27 02:44:11 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-10-27 02:44:11 +0800 |
commit | df3757dada805af9f6f187f74b58075fff337e30 (patch) | |
tree | e339b2d30825fbbf413d8f49ef3a4b932008c31c | |
parent | 848799d9b7c4f142615fd97263c32418a933a8a6 (diff) | |
download | gsoc2013-evolution-df3757dada805af9f6f187f74b58075fff337e30.tar.gz gsoc2013-evolution-df3757dada805af9f6f187f74b58075fff337e30.tar.zst gsoc2013-evolution-df3757dada805af9f6f187f74b58075fff337e30.zip |
Set the GtkWindow policy so that @allow_shrink, @allow_grow and
* e-shell-view-menu.c (command_about_box): Set the GtkWindow
policy so that @allow_shrink, @allow_grow and @auto_shrink are all
%FALSE.
svn path=/trunk/; revision=14160
-rw-r--r-- | shell/ChangeLog | 6 | ||||
-rw-r--r-- | shell/e-shell-view-menu.c | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 64c6f9beeb..ea611c8803 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,5 +1,11 @@ 2001-10-26 Ettore Perazzoli <ettore@ximian.com> + * e-shell-view-menu.c (command_about_box): Set the GtkWindow + policy so that @allow_shrink, @allow_grow and @auto_shrink are all + %FALSE. + +2001-10-26 Ettore Perazzoli <ettore@ximian.com> + * e-shell-folder-commands.c (e_shell_command_rename_folder): Don't allow invalid folder names. [#12027] diff --git a/shell/e-shell-view-menu.c b/shell/e-shell-view-menu.c index 1e807863e8..928c3b432a 100644 --- a/shell/e-shell-view-menu.c +++ b/shell/e-shell-view-menu.c @@ -206,6 +206,7 @@ command_about_box (BonoboUIComponent *uih, gtk_widget_show (about_box); about_box_window = gtk_window_new (GTK_WINDOW_DIALOG); + gtk_window_set_policy (GTK_WINDOW (about_box_window), FALSE, FALSE, FALSE); gtk_signal_connect (GTK_OBJECT (about_box_window), "button_press_event", GTK_SIGNAL_FUNC (about_box_event_callback), &about_box_window); gtk_signal_connect (GTK_OBJECT (about_box_window), "delete_event", |