make keyboard events work on the focus_cycle_target again
This commit is contained in:
parent
0ba8c17565
commit
e69da364cc
1 changed files with 3 additions and 2 deletions
|
@ -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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue