Fix mouse wheel collision with autogroups nice adjustment

Fixes #805
This commit is contained in:
Daniel Lange 2021-09-22 09:00:31 +02:00
parent 393330239e
commit 87c992739b
1 changed files with 3 additions and 3 deletions

6
CRT.h
View File

@ -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;