summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Lange <DLange@git.local>2021-09-22 09:00:31 +0200
committerDaniel Lange <DLange@git.local>2021-09-22 09:00:31 +0200
commit87c992739bd3941946ca71dc5e2a90af889764c9 (patch)
tree911024cedc720c711be375d6adecb4f18fa9f463
parent393330239ebebb66592ded221b47897347c2abee (diff)
Fix mouse wheel collision with autogroups nice adjustment
Fixes #805
-rw-r--r--CRT.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/CRT.h b/CRT.h
index 4e6ff672..a3f3cb40 100644
--- a/CRT.h
+++ b/CRT.h
@@ -147,9 +147,9 @@ void CRT_fatalError(const char* note) ATTR_NORETURN;
void CRT_handleSIGSEGV(int signal) ATTR_NORETURN;
-#define KEY_WHEELUP KEY_F(20)
-#define KEY_WHEELDOWN KEY_F(21)
-#define KEY_RECLICK KEY_F(22)
+#define KEY_WHEELUP KEY_F(30)
+#define KEY_WHEELDOWN KEY_F(31)
+#define KEY_RECLICK KEY_F(32)
#define KEY_ALT(x) (KEY_F(64 - 26) + ((x) - 'A'))
extern const char* CRT_degreeSign;

© 2014-2024 Faster IT GmbH | imprint | privacy policy