From 37adfe9e2a7249d66045fb016cc5cdae078872a4 Mon Sep 17 00:00:00 2001 From: Denis Fomin Date: Sat, 7 Sep 2013 21:50:18 +0400 Subject: [PATCH] [Darlan] Transient dialogs. See #7185 --- src/config.py | 3 ++- src/gui_interface.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/config.py b/src/config.py index 39453fcf6..c43f4555b 100644 --- a/src/config.py +++ b/src/config.py @@ -2167,7 +2167,8 @@ class AccountsWindow: message = _('Enter a new name for account %s') % self.current_account old_text = self.current_account dialogs.InputDialog(title, message, old_text, is_modal=False, - ok_handler=(on_renamed, self.current_account)) + ok_handler=(on_renamed, self.current_account), + transient_for=self.window) def option_changed(self, option, value): return gajim.config.get_per('accounts', self.current_account, option) \ diff --git a/src/gui_interface.py b/src/gui_interface.py index b8727c8de..6b4356a3e 100644 --- a/src/gui_interface.py +++ b/src/gui_interface.py @@ -1175,7 +1175,7 @@ class Interface: dlg = dialogs.InputDialog(_('Username Conflict'), _('Please type a new username for your local account'), input_str=obj.alt_name, is_modal=True, ok_handler=on_ok, - cancel_handler=on_cancel) + cancel_handler=on_cancel, transient_for=self.roster.window) def handle_event_resource_conflict(self, obj): # ('RESOURCE_CONFLICT', account, ())