File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -209,7 +209,7 @@ class Keycode:
209
209
"""Keypad ``\\ `` and ``|`` (Non-US)"""
210
210
211
211
APPLICATION = 0x65
212
- """Application (104- key keyboard) """
212
+ """Application. Also known as the Menu key (Windows). """
213
213
POWER = 0x66
214
214
"""Power (Mac)"""
215
215
KEYPAD_EQUALS = 0x67
@@ -240,19 +240,19 @@ class Keycode:
240
240
LEFT_ALT = 0xE2
241
241
"""Alt modifier left of the spacebar."""
242
242
ALT = LEFT_ALT
243
- """Alias for LEFT_ALT."""
243
+ """Alias for LEFT_ALT. Alt is also known as Option (Mac). """
244
244
LEFT_GUI = 0xE3
245
- """GUI modifier left of the spacebar."""
245
+ """GUI modifier left of the spacebar."""
246
246
GUI = LEFT_GUI
247
- """Alias for LEFT_GUI."""
247
+ """Alias for LEFT_GUI. GUI is also known as the Windows key, Command (Mac), or Meta. """
248
248
RIGHT_CONTROL = 0xE4
249
249
"""Control modifier right of the spacebar."""
250
250
RIGHT_SHIFT = 0xE5
251
251
"""Shift modifier right of the spacebar."""
252
252
RIGHT_ALT = 0xE6
253
253
"""Alt modifier right of the spacebar."""
254
254
RIGHT_GUI = 0xE7
255
- """GUI modifier right of the spacebar (also known as the Windows key, Option (Mac), or Meta) ."""
255
+ """GUI modifier right of the spacebar."""
256
256
257
257
@classmethod
258
258
def modifier_bit (cls , keycode ):
You can’t perform that action at this time.
0 commit comments