diff options
Diffstat (limited to 'apps/action.c')
| -rw-r--r-- | apps/action.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/apps/action.c b/apps/action.c index d61930a..003f11f 100644 --- a/apps/action.c +++ b/apps/action.c @@ -205,7 +205,12 @@ static int get_action_worker(int context, int timeout, pcmbuf_beep(4000, KEYCLICK_DURATION, 2500*global_settings.keyclick); #endif - if ((context != last_context) && ((last_button & BUTTON_REL) == 0)) + if ((context != last_context) && ((last_button & BUTTON_REL) == 0) +#ifdef HAVE_SCROLLWHEEL + /* Scrollwheel doesn't generate release events */ + && !(last_button & (BUTTON_SCROLL_BACK | BUTTON_SCROLL_FWD)) +#endif + ) { if (button & BUTTON_REL) { |