Changeset 9893 for trunk/src/groupchat_control.py
- Timestamp:
- 07/07/08 00:24:19 (5 months ago)
- Files:
-
- 1 modified
-
trunk/src/groupchat_control.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/groupchat_control.py
r9880 r9893 1868 1868 gc_refer_to_nick_char = gajim.config.get('gc_refer_to_nick_char') 1869 1869 with_refer_to_nick_char = False 1870 if begin.endswith(gc_refer_to_nick_char): 1870 1871 # first part of this if : works fine even if refer_to_nick_char 1872 if gc_refer_to_nick_char and begin.endswith(gc_refer_to_nick_char): 1871 1873 with_refer_to_nick_char = True 1872 1874 if len(self.nick_hits) and self.last_key_tabs and \ … … 1881 1883 list_nick = gajim.contacts.get_nick_list(self.account, 1882 1884 self.room_jid) 1885 list_nick.sort(key=unicode.lower) # case-insensitive sort 1883 1886 if begin == '': 1884 1887 # empty message, show lasts nicks that highlighted us first … … 1889 1892 1890 1893 list_nick.remove(self.nick) # Skip self 1891 list_nick.sort()1892 1894 for nick in list_nick: 1893 1895 if nick.lower().startswith(begin.lower()):
