summaryrefslogtreecommitdiff
path: root/openbox
diff options
context:
space:
mode:
Diffstat (limited to 'openbox')
-rw-r--r--openbox/event.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/openbox/event.c b/openbox/event.c
index cd0163f2..45434f25 100644
--- a/openbox/event.c
+++ b/openbox/event.c
@@ -463,11 +463,8 @@ static void event_process(const XEvent *ec, gpointer data)
e->type == MotionNotify)
mouse_event(client, e);
else if (e->type == KeyPress)
- /* when in the middle of a focus cycling action, this
- causes the window which appears to be focused to be
- the one on which the actions will be executed */
- keyboard_event((focus_cycle_target ?
- focus_cycle_target : client), e);
+ keyboard_event((focus_hilite ?
+ focus_hilite : client), e);
}
}
}