This shoudl fix tab completion in GC. For real now, I hope.
This commit is contained in:
parent
2be8792fd3
commit
fcbb71a6d2
|
@ -1886,7 +1886,7 @@ class GroupchatControl(ChatControlBase):
|
||||||
list_nick.insert(0, nick)
|
list_nick.insert(0, nick)
|
||||||
|
|
||||||
list_nick.remove(self.nick) # Skip self
|
list_nick.remove(self.nick) # Skip self
|
||||||
list_nick.reverse()
|
list_nick.sort()
|
||||||
for nick in list_nick:
|
for nick in list_nick:
|
||||||
if nick.lower().startswith(begin.lower()):
|
if nick.lower().startswith(begin.lower()):
|
||||||
# the word is the begining of a nick
|
# the word is the begining of a nick
|
||||||
|
|
Loading…
Reference in New Issue