diff options
-rw-r--r-- | shell/ChangeLog | 5 | ||||
-rw-r--r-- | shell/e-shell.c | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index b4facf3710..783ab4d7ac 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,5 +1,10 @@ 2002-07-02 Ettore Perazzoli <ettore@ximian.com> + * e-shell.c (e_shell_show_settings): Don't set up the settings + dialog as a transient. [#25776] + +2002-07-02 Ettore Perazzoli <ettore@ximian.com> + * e-local-storage.c (bonobo_interface_remove_folder_cb): Add parameter @listener to match the signal's signature. [#24413] diff --git a/shell/e-shell.c b/shell/e-shell.c index 38e83234c0..ebe6086a66 100644 --- a/shell/e-shell.c +++ b/shell/e-shell.c @@ -2085,9 +2085,7 @@ e_shell_show_settings (EShell *shell, const char *type, EShellView *shell_view) gtk_signal_connect (GTK_OBJECT (priv->settings_dialog), "destroy", GTK_SIGNAL_FUNC (settings_dialog_destroy_cb), shell); - gtk_window_set_transient_for (GTK_WINDOW (priv->settings_dialog), GTK_WINDOW (shell_view)); gtk_widget_show (priv->settings_dialog); - } |