Auto clear/hide search when open a chat.

This commit is contained in:
Denis Fomin 2013-08-15 14:32:14 +04:00
parent 148963bcf4
commit d6b6c3fab7
1 changed files with 2 additions and 2 deletions

View File

@ -4041,8 +4041,6 @@ class RosterWindow:
When an iter is activated (double-click or single click if gnome is set When an iter is activated (double-click or single click if gnome is set
this way) this way)
""" """
if self.rfilter_enabled:
self.disable_rfilter()
model = self.modelfilter model = self.modelfilter
account = model[path][C_ACCOUNT].decode('utf-8') account = model[path][C_ACCOUNT].decode('utf-8')
type_ = model[path][C_TYPE] type_ = model[path][C_TYPE]
@ -4052,6 +4050,8 @@ class RosterWindow:
else: else:
self.tree.expand_row(path, False) self.tree.expand_row(path, False)
return return
if self.rfilter_enabled:
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)