diff options
Diffstat (limited to 'openbox')
| -rw-r--r-- | openbox/event.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/openbox/event.c b/openbox/event.c index a5bb295a..ed214af7 100644 --- a/openbox/event.c +++ b/openbox/event.c @@ -407,7 +407,9 @@ static void event_process(XEvent *e) e->type == ButtonPress || e->type == KeyPress || e->type == KeyRelease) { moveresize_event(e); - return; /* no dispatch! */ + + if (!(e->type == ButtonPress || e->type == ButtonRelease)) + return; /* no dispatch! */ } /* user input (action-bound) events */ |
