We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55e06d0 commit 56332b7Copy full SHA for 56332b7
src/raddbg/raddbg.c
@@ -332,7 +332,8 @@ update_and_render(OS_Handle repaint_window_handle, void *user_data)
332
(ev->kind == OS_EventKind_Press && ev->key != OS_Key_MiddleMouseButton) ||
333
(ev->kind == OS_EventKind_Release && ev->key != OS_Key_LeftMouseButton) ||
334
(ev->kind == OS_EventKind_Release && ev->key != OS_Key_RightMouseButton) ||
335
- (ev->kind == OS_EventKind_Release && ev->key != OS_Key_MiddleMouseButton))
+ (ev->kind == OS_EventKind_Release && ev->key != OS_Key_MiddleMouseButton) ||
336
+ (ev->kind == OS_EventKind_Scroll))
337
{
338
os_eat_event(&leftover_events, ev);
339
}
0 commit comments