From 5ae665b2535b2ff174bd9af357afc337748a57a3 Mon Sep 17 00:00:00 2001 From: Florent Le Coz Date: Sun, 2 Oct 2011 17:39:18 +0200 Subject: Fix completion case-sensitiveness --- src/windows.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/windows.py b/src/windows.py index fb99416c..4f2c68c6 100644 --- a/src/windows.py +++ b/src/windows.py @@ -967,7 +967,7 @@ class Input(Win): begin = self.text[:pos] hit_list = [] # list of matching nicks for word in word_list: - if word.lower().startswith(begin): + if word.lower().startswith(begin.lower()): hit_list.append(word) if len(hit_list) == 0: return -- cgit v1.2.3