Simpler way to do [9756], thanks steve-e
This commit is contained in:
parent
cc307aed70
commit
a0f57f5e99
|
@ -156,12 +156,9 @@ class HistoryWindow:
|
||||||
keys = self.completion_dict.keys()
|
keys = self.completion_dict.keys()
|
||||||
# Move the actual jid at first so we load history faster
|
# Move the actual jid at first so we load history faster
|
||||||
actual_jid = self.jid_entry.get_text().decode('utf-8')
|
actual_jid = self.jid_entry.get_text().decode('utf-8')
|
||||||
if actual_jid.find('@') > 0:
|
if actual_jid in keys:
|
||||||
# it's not 'Enter JID or Contact name' or something, but a real jid,
|
keys.remove(actual_jid)
|
||||||
# we can really move it at first
|
keys.insert(0, actual_jid)
|
||||||
if actual_jid in keys:
|
|
||||||
keys.remove(actual_jid)
|
|
||||||
keys.insert(0, actual_jid)
|
|
||||||
# Map jid to info tuple
|
# Map jid to info tuple
|
||||||
# Warning : This for is time critical with big DB
|
# Warning : This for is time critical with big DB
|
||||||
for key in keys:
|
for key in keys:
|
||||||
|
|
Loading…
Reference in New Issue