From 6ec832e63368345e1d2ba99e68dfad8ce2a4fc29 Mon Sep 17 00:00:00 2001
From: Ariver <ar@MacBook-Air.local>
Date: Sun, 10 May 2026 19:28:32 +0800
Subject: [PATCH] Fix overlay visibility in fullscreen spaces

---
 Apptag/TagGroupView.swift |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/Apptag/TagGroupView.swift b/Apptag/TagGroupView.swift
index 1089136..c5618ea 100644
--- a/Apptag/TagGroupView.swift
+++ b/Apptag/TagGroupView.swift
@@ -7,6 +7,7 @@
     let onSelectApp: (AppInfo) -> Void
     let tagFontSize: CGFloat
     let iconSize: CGFloat
+    var showNames: Bool = true
 
     /// Adaptive columns — auto-fit based on icon size and available width.
     private var columns: [GridItem] {
@@ -43,6 +44,7 @@
                     AppGridItem(
                         app: app,
                         iconSize: iconSize,
+                        showName: showNames,
                         onSelect: { onSelectApp(app) }
                     )
                 }

--
Gitblit v1.9.3