all repos — openbox @ 8b5619d0ad1ed1a9ed41cc5e54622aa6e8fd2cf9

openbox fork - make it a bit more like ryudo

add comment
Dana Jansens danakj@orodu.net
commit

8b5619d0ad1ed1a9ed41cc5e54622aa6e8fd2cf9

parent

2612dbf0504c9e35171248b44a2b58b63a80b624

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

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

@@ -49,13 +49,17 @@ grab_pointer(FALSE, OB_CURSOR_NONE);

} else { ObClient *c; + /* usually this is sorta redundant, but with a press action + the enter event will come as a GrabNotify which is + ignored, so this will handle that case */ if ((c = client_under_pointer())) event_enter_client(c); } } } -typedef struct ActionString { +typedef struct +{ const gchar *name; void (*func)(union ActionData *); void (*setup)(ObAction **, ObUserAction uact);