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 7f3c76d commit 9ecce75Copy full SHA for 9ecce75
kmk/extensions/international.py
@@ -1,7 +1,7 @@
1
'''Adds international keys'''
2
3
from kmk.extensions import Extension
4
-from kmk.keys import ConsumerKey, make_key
+from kmk.keys import KeyboardKey, make_key
5
6
7
class International(Extension):
@@ -33,7 +33,7 @@ def __init__(self):
33
(152, ('LANG9',)),
34
)
35
for code, names in codes:
36
- make_key(names=names, constructor=ConsumerKey, code=code)
+ make_key(names=names, constructor=KeyboardKey, code=code)
37
38
def on_runtime_enable(self, sandbox):
39
return
0 commit comments