all repos — openbox @ b84a934ab7b3ebd68b8b90961146463ac17d396e

openbox fork - make it a bit more like ryudo

provide function to tell if a client has any group siblings
Dana Jansens danakj@orodu.net
commit

b84a934ab7b3ebd68b8b90961146463ac17d396e

parent

d38c835cefd6ab9d0d1fb82480a1695c76e0b452

2 files changed, 7 insertions(+), 0 deletions(-)

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

@@ -3200,3 +3200,8 @@ }

} return ret; } + +gboolean client_has_group_siblings(ObClient *self) +{ + return self->group && self->group->members->next; +}
M openbox/client.hopenbox/client.h

@@ -563,4 +563,6 @@ void client_update_sm_client_id(ObClient *self);

ObClient* client_under_pointer(); +gboolean client_has_group_siblings(ObClient *self); + #endif