diff --git a/src/raddbg/raddbg.c b/src/raddbg/raddbg.c index 03935c02..400d1138 100644 --- a/src/raddbg/raddbg.c +++ b/src/raddbg/raddbg.c @@ -332,7 +332,8 @@ update_and_render(OS_Handle repaint_window_handle, void *user_data) (ev->kind == OS_EventKind_Press && ev->key != OS_Key_MiddleMouseButton) || (ev->kind == OS_EventKind_Release && ev->key != OS_Key_LeftMouseButton) || (ev->kind == OS_EventKind_Release && ev->key != OS_Key_RightMouseButton) || - (ev->kind == OS_EventKind_Release && ev->key != OS_Key_MiddleMouseButton)) + (ev->kind == OS_EventKind_Release && ev->key != OS_Key_MiddleMouseButton) || + (ev->kind == OS_EventKind_Scroll)) { os_eat_event(&leftover_events, ev); }