diff options
-rw-r--r-- | shell/ChangeLog | 4 | ||||
-rw-r--r-- | shell/e-shell.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index d69c2a73d2..73991d0eee 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,7 @@ +2003-12-22 Ross Burton <ross@burtonini.com> + + * e-shell.c: mark the settings dialog as transient for the main window. + 2003-12-14 JP Rosevear <jpr@ximian.com> * e-user-creatable-items-handler.c (get_components_from_registry): diff --git a/shell/e-shell.c b/shell/e-shell.c index 7da688d100..c0a7f6fc85 100644 --- a/shell/e-shell.c +++ b/shell/e-shell.c @@ -989,6 +989,7 @@ e_shell_show_settings (EShell *shell, g_object_add_weak_pointer (G_OBJECT (priv->settings_dialog), (void **) & priv->settings_dialog); + gtk_window_set_transient_for (GTK_WINDOW (priv->settings_dialog), GTK_WINDOW (shell_window)); gtk_widget_show (priv->settings_dialog); } |