all repos — openbox @ e69da364cc073589b7984e2f1ce5d93f4d919950

openbox fork - make it a bit more like ryudo

make keyboard events work on the focus_cycle_target again
Dana Jansens danakj@orodu.net
commit

e69da364cc073589b7984e2f1ce5d93f4d919950

parent

0ba8c17565a7d3bb7f376ba5d072e0b70e96dec1

1 files changed, 3 insertions(+), 2 deletions(-)

jump to
M openbox/event.copenbox/event.c

@@ -463,8 +463,9 @@ if (e->type == ButtonPress || e->type == ButtonRelease ||

e->type == MotionNotify) mouse_event(client, e); else if (e->type == KeyPress) - keyboard_event((focus_hilite ? - focus_hilite : client), e); + keyboard_event((focus_cycle_target ? focus_cycle_target : + (focus_hilite ? focus_hilite : client)), + e); } } }