From e9a4b372e2d998074b971164d280378630e140f2 Mon Sep 17 00:00:00 2001 From: Markus Wintermann Date: Sat, 5 May 2018 14:19:17 +0200 Subject: [PATCH] Select account in account list if edited Before: After a rightclick -> "Modify Account" on an account in the roster the preferences of the account are shown but the account is not selected in the account list. After: account will be selected in the account list too --- gajim/accounts_window.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gajim/accounts_window.py b/gajim/accounts_window.py index 6f08ed2ca..df5d553ad 100644 --- a/gajim/accounts_window.py +++ b/gajim/accounts_window.py @@ -225,6 +225,7 @@ class AccountsWindow(Gtk.ApplicationWindow): def select_account(self, account): for row in self.account_list.get_children(): if row.get_child().account == account: + self.account_list.select_row(row) self.account_list.emit('row-activated', row) break