all repos — openbox @ 7b7bf43fc94ef3ab8c2951d0df83bf116984f413

openbox fork - make it a bit more like ryudo

use the focus client when the client is null for keyboard events
Dana Jansens danakj@orodu.net
commit

7b7bf43fc94ef3ab8c2951d0df83bf116984f413

parent

396eb330ac99708de781b6ef192cfda0a1afe720

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

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

@@ -500,7 +500,8 @@ /* 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); + focus_cycle_target : + (client ? client : focus_client)), e); } } }