From: Dana Jansens Date: Mon, 14 May 2007 23:34:05 +0000 (+0000) Subject: also if you hide the focused window, then kill the interactive action so focus isnt... X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=5d85502e3b12ae2301b28d624d7fa60a66f646bb;p=chaz%2Fopenbox also if you hide the focused window, then kill the interactive action so focus isnt all confused for the app --- diff --git a/openbox/client.c b/openbox/client.c index 6446a794..837dd019 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -2421,6 +2421,18 @@ gboolean client_hide(ObClient *self) gboolean hide = FALSE; if (!client_should_show(self)) { + if (self == focus_client) { + /* if there is a grab going on, then we need to cancel it. if we + move focus during the grab, applications will get + NotifyWhileGrabbed events and ignore them ! + + actions should not rely on being able to move focus during an + interactive grab. + */ + if (keyboard_interactively_grabbed()) + keyboard_interactive_cancel(); + } + frame_hide(self->frame); hide = TRUE; }