summaryrefslogtreecommitdiff
path: root/openbox
diff options
context:
space:
mode:
Diffstat (limited to 'openbox')
-rw-r--r--openbox/menu.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/openbox/menu.c b/openbox/menu.c
index fae9dca6..c6c3a4a3 100644
--- a/openbox/menu.c
+++ b/openbox/menu.c
@@ -392,7 +392,8 @@ void menu_entry_fire(ObMenuEntry *self, unsigned int button, unsigned int x,
{
ObMenu *m;
- if (button > 3) return;
+ /* ignore wheel scrolling */
+ if (button == 4 || button == 5) return;
if (self->action) {
self->action->data.any.c = self->parent->client;