From 63a2204fa594b09863fe8bab3dd440feb0d34552 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sun, 22 Mar 2020 14:24:12 +0900 Subject: [PATCH] [qwaq] Fix incorrect mouse wheel bits I thought I fixed that already (mistreating mouse 3 as part of the wheel group). --- ruamoko/qwaq/qwaq-input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ruamoko/qwaq/qwaq-input.c b/ruamoko/qwaq/qwaq-input.c index cab020328..61d3b1208 100644 --- a/ruamoko/qwaq/qwaq-input.c +++ b/ruamoko/qwaq/qwaq-input.c @@ -54,7 +54,7 @@ #define MOUSE_MOVES_OFF "\033[?1003l" #define SGR_ON "\033[?1006h" #define SGR_OFF "\033[?1006l" -#define WHEEL_BUTTONS 0x7c // scroll up/down/left/right - always click +#define WHEEL_BUTTONS 0x78 // scroll up/down/left/right - always click typedef struct qwaq_key_s { const char *sequence;