all repos — openbox @ 3c590a5851877c0b0205bb107da5d8e9318409c7

openbox fork - make it a bit more like ryudo

kill enter events without using pointer grabs
Dana Jansens danakj@orodu.net
commit

3c590a5851877c0b0205bb107da5d8e9318409c7

parent

281c1edb4206b7e7874990b1bd5f66e1e7e43ede

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

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

@@ -40,9 +40,6 @@ #include <glib.h>

inline void client_action_start(union ActionData *data) { - if (config_focus_follow) - if (data->any.context != OB_FRAME_CONTEXT_CLIENT && !data->any.button) - grab_pointer(FALSE, FALSE, OB_CURSOR_NONE); } inline void client_action_end(union ActionData *data)

@@ -50,7 +47,7 @@ {

if (config_focus_follow) if (data->any.context != OB_FRAME_CONTEXT_CLIENT) { if (!data->any.button) { - ungrab_pointer(); + event_ignore_queued_enters(); } else { ObClient *c;