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 @@ -220,17 +220,17 @@ def init_accelerators(self):
220
220
def register_hot_key (self ):
221
221
self .RegisterHotKey (
222
222
HotkeyAction .TOGGLE_VISIBILITY .value ,
223
- win32con .MOD_CONTROL | win32con .MOD_ALT | win32con . MOD_SHIFT ,
224
- ord ( 'B' ) ,
223
+ win32con .MOD_WIN | win32con .MOD_ALT ,
224
+ win32con . VK_SPACE ,
225
225
)
226
226
self .RegisterHotKey (
227
227
HotkeyAction .CAPTURE_FULL .value ,
228
- win32con .MOD_CONTROL | win32con .MOD_ALT | win32con . MOD_SHIFT ,
229
- ord ('F ' ),
228
+ win32con .MOD_WIN | win32con .MOD_CONTROL ,
229
+ ord ('U ' ),
230
230
)
231
231
self .RegisterHotKey (
232
232
HotkeyAction .CAPTURE_WINDOW .value ,
233
- win32con .MOD_CONTROL | win32con .MOD_ALT | win32con . MOD_SHIFT ,
233
+ win32con .MOD_WIN | win32con .MOD_CONTROL ,
234
234
ord ('W' ),
235
235
)
236
236
You can’t perform that action at this time.
0 commit comments