all repos — openbox @ 4307366b713aaf1a5787dbb3244a5717db1330e8

openbox fork - make it a bit more like ryudo

create fake enter events for button press bindings.  only swallow enter events when focus.undermouse is not on (for non-mouse actions)
Dana Jansens danakj@orodu.net
commit

4307366b713aaf1a5787dbb3244a5717db1330e8

parent

8c265b5e3351a946af37f972e66de50a419314d9

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

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

@@ -339,7 +339,7 @@ ignore_start = event_start_ignore_all_enters();

else if (config_focus_follow && data->context != OB_FRAME_CONTEXT_CLIENT) { - if (data->button && config_focus_under_mouse) { + if (data->uact == OB_USER_ACTION_MOUSE_PRESS) { struct _ObClient *c; /* usually this is sorta redundant, but with a press action

@@ -353,7 +353,8 @@ "Generating fake enter because we did a "

"mouse-event action"); event_enter_client(c); } - } else + } + else if (!data->button && !config_focus_under_mouse) event_end_ignore_all_enters(ignore_start); } }