diff options
author | Guido Cella <guido@guidocella.xyz> | 2024-06-12 21:05:32 +0200 |
---|---|---|
committer | Leonardo Hernández Hernández <leohdz172@proton.me> | 2024-06-12 14:25:58 -0600 |
commit | e5a57fb155c0238c46336795902c6bfdf4c6d00b (patch) | |
tree | 587ef98f74bf4736d04f8695c75137c0368a4708 | |
parent | 21205f2f404ee2ae0680becbe914e6deb04df2ee (diff) |
use tabs in client.h
Fixes 298949bbc4eae8cedb9cdd11cfc9ebd139ac5d5f.
-rw-r--r-- | client.h | 20 |
1 files changed, 10 insertions, 10 deletions
@@ -172,11 +172,11 @@ client_get_parent(Client *c) { Client *p = NULL; #ifdef XWAYLAND - if (client_is_x11(c)) { - if (c->surface.xwayland->parent) - toplevel_from_wlr_surface(c->surface.xwayland->parent->surface, &p, NULL); - return p; - } + if (client_is_x11(c)) { + if (c->surface.xwayland->parent) + toplevel_from_wlr_surface(c->surface.xwayland->parent->surface, &p, NULL); + return p; + } #endif if (c->surface.xdg->toplevel->parent) toplevel_from_wlr_surface(c->surface.xdg->toplevel->parent->base->surface, &p, NULL); @@ -187,12 +187,12 @@ static inline int client_has_children(Client *c) { #ifdef XWAYLAND - if (client_is_x11(c)) - return !wl_list_empty(&c->surface.xwayland->children); + if (client_is_x11(c)) + return !wl_list_empty(&c->surface.xwayland->children); #endif - /* surface.xdg->link is never empty because it always contains at least the - * surface itself. */ - return wl_list_length(&c->surface.xdg->link) > 1; + /* surface.xdg->link is never empty because it always contains at least the + * surface itself. */ + return wl_list_length(&c->surface.xdg->link) > 1; } static inline const char * |