disable rfilter only when we have finished getting the correct iter. Fixes #7430
This commit is contained in:
parent
56acdd2b56
commit
f5c0012190
|
@ -4069,7 +4069,7 @@ class RosterWindow:
|
||||||
self.tree.expand_row(path, False)
|
self.tree.expand_row(path, False)
|
||||||
return
|
return
|
||||||
if self.rfilter_enabled:
|
if self.rfilter_enabled:
|
||||||
self.disable_rfilter()
|
Gobject.idle_add(self.disable_rfilter)
|
||||||
jid = model[path][C_JID]
|
jid = model[path][C_JID]
|
||||||
resource = None
|
resource = None
|
||||||
contact = gajim.contacts.get_contact_with_highest_priority(account, jid)
|
contact = gajim.contacts.get_contact_with_highest_priority(account, jid)
|
||||||
|
|
Loading…
Reference in New Issue