From f5c0012190d4b3599028b79cdce2bbe9504e5e67 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Fri, 16 Aug 2013 09:39:10 +0200 Subject: [PATCH] disable rfilter only when we have finished getting the correct iter. Fixes #7430 --- src/roster_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/roster_window.py b/src/roster_window.py index 792841c28..c097a23a2 100644 --- a/src/roster_window.py +++ b/src/roster_window.py @@ -4069,7 +4069,7 @@ class RosterWindow: self.tree.expand_row(path, False) return if self.rfilter_enabled: - self.disable_rfilter() + Gobject.idle_add(self.disable_rfilter) jid = model[path][C_JID] resource = None contact = gajim.contacts.get_contact_with_highest_priority(account, jid)