[gnome-terminal] app: Make prefs windows have no transient parent



commit 718ed64bdae5679b62c269fe111f9f701590e8ce
Author: Christian Persch <chpe gnome org>
Date:   Thu Jul 3 10:44:05 2014 +0200

    app: Make prefs windows have no transient parent

 src/terminal-app.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/src/terminal-app.c b/src/terminal-app.c
index 732c0f3..4ac2972 100644
--- a/src/terminal-app.c
+++ b/src/terminal-app.c
@@ -176,7 +176,7 @@ terminal_app_new_profile (TerminalApp *app,
   if (profile == NULL)
     return;
 
-  terminal_profile_edit (profile, transient_parent, "profile-name-entry");
+  terminal_profile_edit (profile, NULL, "profile-name-entry");
 }
 
 void
@@ -596,21 +596,21 @@ terminal_app_edit_profile (TerminalApp     *app,
                            GtkWindow       *transient_parent,
                            const char      *widget_name)
 {
-  terminal_profile_edit (profile, transient_parent, widget_name);
+  terminal_profile_edit (profile, NULL, widget_name);
 }
 
 void
 terminal_app_edit_preferences (TerminalApp     *app,
                                GtkWindow       *transient_parent)
 {
-  terminal_prefs_show_preferences (transient_parent, "general");
+  terminal_prefs_show_preferences (NULL, "general");
 }
 
 void
 terminal_app_edit_encodings (TerminalApp     *app,
                              GtkWindow       *transient_parent)
 {
-  terminal_prefs_show_preferences (transient_parent, "encodings");
+  terminal_prefs_show_preferences (NULL, "encodings");
 }
 
 /**


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]