From: Mikael Magnusson Date: Wed, 25 Feb 2004 19:07:40 +0000 (+0000) Subject: this might fix focusLast which was previously borken when closing a window and the... X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=d50f4917169e8d354f62dd639afde0efe807760c;p=chaz%2Fopenbox this might fix focusLast which was previously borken when closing a window and the pointer was on it and then going onto another from the close. er, yeah. --- diff --git a/openbox/client.c b/openbox/client.c index 293546b7..538cfbed 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -415,6 +415,10 @@ void client_unmanage(ObClient *self) keyboard_grab_for_client(self, FALSE); mouse_grab_for_client(self, FALSE); + /* potentially fix focusLast */ + if (config_focus_last) + grab_pointer(TRUE, OB_CURSOR_NONE); + /* remove the window from our save set */ XChangeSaveSet(ob_display, self->window, SetModeDelete); @@ -518,6 +522,9 @@ void client_unmanage(ObClient *self) /* update the list hints */ client_set_list(); + + if (config_focus_last) + grab_pointer(FALSE, OB_CURSOR_NONE); } static void client_urgent_notify(ObClient *self)