From df3757dada805af9f6f187f74b58075fff337e30 Mon Sep 17 00:00:00 2001 From: Ettore Perazzoli Date: Fri, 26 Oct 2001 18:44:11 +0000 Subject: 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 --- shell/ChangeLog | 6 ++++++ shell/e-shell-view-menu.c | 1 + 2 files changed, 7 insertions(+) (limited to 'shell') diff --git a/shell/ChangeLog b/shell/ChangeLog index 64c6f9beeb..ea611c8803 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,9 @@ +2001-10-26 Ettore Perazzoli + + * 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 * e-shell-folder-commands.c (e_shell_command_rename_folder): Don't 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", -- cgit