summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-07-30 06:06:13 +0000
committerDana Jansens <danakj@orodu.net>2003-07-30 06:06:13 +0000
commit40c3228f351b3e35c3b85f140c195ea984ab2b61 (patch)
treed57a9c64a3bd45d0a6b8e7783c649431a2773211
parent64884e4390cedbf47002fa8b4534a416033a3cca (diff)
only ignore wheel buttons
-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;