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 87fc88d commit b6e1cd3Copy full SHA for b6e1cd3
basilisk/gui/main_frame.py
@@ -272,17 +272,17 @@ def register_hot_key(self):
272
"""
273
self.RegisterHotKey(
274
HotkeyAction.TOGGLE_VISIBILITY.value,
275
- win32con.MOD_CONTROL | win32con.MOD_ALT | win32con.MOD_SHIFT,
276
- ord('B'),
+ win32con.MOD_WIN | win32con.MOD_ALT,
+ win32con.VK_SPACE,
277
)
278
279
HotkeyAction.CAPTURE_FULL.value,
280
281
- ord('F'),
+ win32con.MOD_WIN | win32con.MOD_CONTROL,
+ ord('U'),
282
283
284
HotkeyAction.CAPTURE_WINDOW.value,
285
286
ord('W'),
287
288
0 commit comments