all repos — openbox @ 911ad76372394715f7eae88c96eeb6d06396f3be

openbox fork - make it a bit more like ryudo

a) set the focus client before calculating its layer
b) cleanup in focus.c
Dana Jansens danakj@orodu.net
commit

911ad76372394715f7eae88c96eeb6d06396f3be

parent

55b5b828e9b52ea755cae4b3892c6d27cc59e82c

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

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

@@ -471,8 +471,8 @@ */

focus_fallback(TRUE); } else if (client && client != focus_client) { frame_adjust_focus(client->frame, TRUE); - client_calc_layer(client); focus_set_client(client); + client_calc_layer(client); } } else if (e->type == FocusOut) { gboolean nomove = FALSE;
M openbox/focus.copenbox/focus.c

@@ -259,10 +259,6 @@

void focus_fallback(gboolean allow_refocus) { ObClient *new; - ObClient *old; - - /* save this before moving focus away to nothing */ - old = focus_client; /* unfocus any focused clients.. they can be focused by Pointer events and such, and then when I try focus them, I won't get a FocusIn event

@@ -270,7 +266,7 @@ at all for them.

*/ focus_nothing(); - if ((new = focus_fallback_target(allow_refocus, old))) + if ((new = focus_fallback_target(allow_refocus, focus_client))) client_focus(new); }