diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2015-10-17 08:36:16 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2015-10-17 08:36:25 +0200 |
commit | 86418fa6feeb199df96146ba2343f4b9fdb54c21 (patch) | |
tree | 251d0ca3a8acbaa6133b42b477331b046b2e8f1a | |
parent | c47260fbc4045d62063ba7f952fda1b46e0a10ea (diff) |
shortcuts: actually print screen binding works
It works only if Dropbox doesn't hook the key
Issue: #257
-rw-r--r-- | opentrack/win32-shortcuts.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opentrack/win32-shortcuts.cpp b/opentrack/win32-shortcuts.cpp index ceee2f9b..feaf6036 100644 --- a/opentrack/win32-shortcuts.cpp +++ b/opentrack/win32-shortcuts.cpp @@ -109,7 +109,7 @@ QList<win_key> windows_key_sequences = win_key(DIK_RETURN, Qt::Key::Key_Return), win_key(DIK_INSERT, Qt::Key::Key_Insert), win_key(DIK_SPACE, Qt::Key::Key_Space), - //win_key(DIK_SYSRQ, Qt::Key::Key_Print), + win_key(DIK_SYSRQ, Qt::Key::Key_Print), win_key(DIK_SCROLL, Qt::Key::Key_ScrollLock), win_key(DIK_PAUSE, Qt::Key::Key_Pause), }); |