From cbaf5a7756900599b8aaafb5ff57f6df8c38ab4a Mon Sep 17 00:00:00 2001 From: HuntedByTheIRS Date: Thu, 16 Jul 2026 15:50:58 -0400 Subject: [PATCH] fix patch --- .gitignore | 1 + src/client.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 0334ee4..f83d079 100644 --- a/.gitignore +++ b/.gitignore @@ -57,3 +57,4 @@ dkms.conf .opencode/ .omo/ objects/ +.logs/ diff --git a/src/client.c b/src/client.c index 488722b..cf906eb 100644 --- a/src/client.c +++ b/src/client.c @@ -147,7 +147,7 @@ client_get_appid(Client *c) { #ifdef XWAYLAND if (client_is_x11(c)) - return c->surface.xwayland->class ? c->surface.xwayland->class : "broken"; + return c->surface.xwayland->cls ? c->surface.xwayland->cls : "broken"; #endif return c->surface.xdg->toplevel->app_id ? c->surface.xdg->toplevel->app_id : "broken"; }