diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/windows.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |