summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2007-04-22 20:27:13 +0000
committerDana Jansens <danakj@orodu.net>2007-04-22 20:27:13 +0000
commitafd88015b55da186a3e7777dadf2a1f572e85529 (patch)
treebed3574fc9ee1be099e43fa38ea667292ece7f0c
parenteb1cd9cc499da864b04cc39a2cf6bd8bf247248b (diff)
focusin to the root window happens on both monitors when a focused window unmaps... boo...
-rw-r--r--openbox/event.c27
1 files changed, 10 insertions, 17 deletions
diff --git a/openbox/event.c b/openbox/event.c
index 47c7f7a7..401328b2 100644
--- a/openbox/event.c
+++ b/openbox/event.c
@@ -454,23 +454,7 @@ static void event_process(const XEvent *ec, gpointer data)
/* crossing events for menu */
event_handle_menu(e);
} else if (e->type == FocusIn) {
- if (e->xfocus.detail == NotifyPointerRoot ||
- e->xfocus.detail == NotifyDetailNone) {
- ob_debug_type(OB_DEBUG_FOCUS, "Focus went to root\n");
- /* Focus has been reverted to the root window or nothing
- FocusOut events come after UnmapNotify, so we don't need to
- worry about focusing an invalid window
- */
- focus_fallback(TRUE);
- } else if (e->xfocus.detail == NotifyInferior) {
- ob_debug_type(OB_DEBUG_FOCUS, "Focus went to parent\n");
- /* Focus has been reverted to parent, which is our frame window,
- or the root window
- FocusOut events come after UnmapNotify, so we don't need to
- worry about focusing an invalid window
- */
- focus_fallback(TRUE);
- } else if (client && client != focus_client) {
+ if (client && client != focus_client) {
frame_adjust_focus(client->frame, TRUE);
focus_set_client(client);
client_calc_layer(client);
@@ -491,6 +475,15 @@ static void event_process(const XEvent *ec, gpointer data)
} else if (ce.xany.window == e->xany.window) {
/* If focus didn't actually move anywhere, there is nothing to do*/
nomove = TRUE;
+ } else if (ce.xfocus.detail == NotifyPointerRoot ||
+ ce.xfocus.detail == NotifyDetailNone ||
+ ce.xfocus.detail == NotifyInferior) {
+ ob_debug_type(OB_DEBUG_FOCUS, "Focus went to root\n");
+ /* Focus has been reverted to the root window or nothing
+ FocusOut events come after UnmapNotify, so we don't need to
+ worry about focusing an invalid window
+ */
+ focus_fallback(TRUE);
} else {
/* Focus did move, so process the FocusIn event */
ObEventData ed = { .ignored = FALSE };