disable rfilter only when we have finished getting the correct iter. Fixes #7430
This commit is contained in:
parent
b8edf8ed64
commit
3f4b0bf160
|
@ -4051,7 +4051,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].decode('utf-8')
|
jid = model[path][C_JID].decode('utf-8')
|
||||||
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