From 251369b5a308a5a10417e0820f0f5297f043393d Mon Sep 17 00:00:00 2001 From: DreamMaoMao <2523610504@qq.com> Date: Wed, 17 Jun 2026 08:42:46 +0800 Subject: [PATCH] opt: optmize label create judge --- src/layout/overview.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/layout/overview.h b/src/layout/overview.h index 06e2213f..32a9a18d 100644 --- a/src/layout/overview.h +++ b/src/layout/overview.h @@ -359,8 +359,7 @@ void create_jump_hints(Monitor *m) { Client *c; wl_list_for_each(c, &clients, link) { - if (VISIBLEON(c, m) && - ((m->isoverview && !client_is_x11_popup(c)) || ISTILED(c))) { + if (VISIBLEON(c, m) && !c->isunglobal && !client_is_x11_popup(c)) { if (label_idx >= 26) break; char c_char = jump_labels[label_idx];