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