make keyboard events work on the focus_cycle_target again

This commit is contained in:
Dana Jansens 2003-10-09 19:08:07 +00:00
parent 0ba8c17565
commit e69da364cc

View file

@ -463,8 +463,9 @@ static void event_process(const XEvent *ec, gpointer data)
e->type == MotionNotify) e->type == MotionNotify)
mouse_event(client, e); mouse_event(client, e);
else if (e->type == KeyPress) else if (e->type == KeyPress)
keyboard_event((focus_hilite ? keyboard_event((focus_cycle_target ? focus_cycle_target :
focus_hilite : client), e); (focus_hilite ? focus_hilite : client)),
e);
} }
} }
} }