diff --git a/src/roster_window.py b/src/roster_window.py index ffc3dfe9b..792841c28 100644 --- a/src/roster_window.py +++ b/src/roster_window.py @@ -4059,8 +4059,6 @@ class RosterWindow: When an iter is activated (double-click or single click if gnome is set this way) """ - if self.rfilter_enabled: - self.disable_rfilter() model = self.modelfilter account = model[path][C_ACCOUNT] type_ = model[path][C_TYPE] @@ -4070,6 +4068,8 @@ class RosterWindow: else: self.tree.expand_row(path, False) return + if self.rfilter_enabled: + self.disable_rfilter() jid = model[path][C_JID] resource = None contact = gajim.contacts.get_contact_with_highest_priority(account, jid)