We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3506554 commit 0504555Copy full SHA for 0504555
inputscope/listener.py
@@ -4,7 +4,7 @@
4
5
@author Erki Suurjaak
6
@created 06.04.2015
7
-@modified 06.05.2015
+@modified 07.05.2015
8
"""
9
from __future__ import print_function
10
import datetime
@@ -187,7 +187,7 @@ def _handle_windows(self, event):
187
188
if vkey not in self.MODIFIERNAMES and not is_altgr:
189
modifier = "-".join(k for k in ["Ctrl", "Alt", "Shift", "Win"]
190
- if self.modifiers[k])
+ if self._modifiers[k])
191
if modifier and modifier != "Shift": # Shift-X is not a combo
192
if self._modifiers["Ctrl"] and event.Ascii:
193
key = self._keyname(unichr(event.KeyID))
0 commit comments