From ab3d441928d4a95d335d04a4825c9f05a910b048 Mon Sep 17 00:00:00 2001 From: Zedhugh Chen Date: Tue, 3 Mar 2026 00:22:39 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=B0=86=20client=20=E7=9A=84=20instanc?= =?UTF-8?q?e=20=E5=92=8C=20class=20=E5=B1=9E=E6=80=A7=E4=B9=9F=E6=97=A0?= =?UTF-8?q?=E4=BD=9C=E4=B8=BA=E4=BB=BB=E5=8A=A1=E6=A0=87=E9=A2=98=E5=A4=87?= =?UTF-8?q?=E9=80=89=E9=A1=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/client.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/client.c b/src/client.c index 9bf3804..da9a51a 100644 --- a/src/client.c +++ b/src/client.c @@ -262,6 +262,8 @@ void client_manage(xcb_window_t window, char **client_get_task_title(client_t *client) { if (client->net_name) return &client->net_name; if (client->name) return &client->name; + if (client->instance) return &client->instance; + if (client->class) return &client->class; return nullptr; }