From 9fcd6ad5d7ff7c341cc169065f0c3209d8a79715 Mon Sep 17 00:00:00 2001 From: Mikael Magnusson Date: Mon, 7 Jul 2008 22:34:55 +0200 Subject: [PATCH] This might be a little bit better. At least it consistently doesn't run the openbox action. --- openbox/event.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/openbox/event.c b/openbox/event.c index 83ac345d..855ad0ff 100644 --- a/openbox/event.c +++ b/openbox/event.c @@ -723,10 +723,10 @@ static void event_process(const XEvent *ec, gpointer data) if (e->type == ButtonPress) pressed = e->xbutton.button; - /* If we have grabbed the mouse actively, I think this is how - to check it? */ - else if (button) - event_handle_user_input(NULL, e); + /* We ignored the release event so make sure we don't think + the button is still pressed */ + else if (e->type == ButtonRelease) + button = 0; } } else if (e->type == KeyPress || e->type == KeyRelease || -- 2.34.1