From 97285a121e3ddd6d93c78d9208d6f0e94b733868 Mon Sep 17 00:00:00 2001
From: Ariver <shanghai3168@gmail.com>
Date: Tue, 07 Jul 2026 14:35:36 +0800
Subject: [PATCH] release: finalize 8.3.6 app store package

---
 C1.source/Apptag/ContentView.swift |    8 ++++++++
 1 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/C1.source/Apptag/ContentView.swift b/C1.source/Apptag/ContentView.swift
index e3a6fe9..b1ca582 100644
--- a/C1.source/Apptag/ContentView.swift
+++ b/C1.source/Apptag/ContentView.swift
@@ -583,6 +583,10 @@
     }
 
     var body: some View {
+        contentWithStateObservers
+    }
+
+    private var contentWithNotificationObservers: some View {
         contentStack
             .onAppear(perform: handleContentAppear)
             .onReceive(NotificationCenter.default.publisher(for: .tagLauncherOverlayDidShow), perform: handleOverlayDidShow)
@@ -593,6 +597,10 @@
             .onReceive(NotificationCenter.default.publisher(for: NSApplication.didBecomeActiveNotification), perform: handleApplicationDidBecomeActive)
             .onReceive(NotificationCenter.default.publisher(for: .tagLauncherDataDidChange), perform: handleDataDidChange)
             .onReceive(NotificationCenter.default.publisher(for: .appLanguageDidChange), perform: handleAppLanguageDidChange)
+    }
+
+    private var contentWithStateObservers: some View {
+        contentWithNotificationObservers
             .onChange(of: editPhase) { _, newPhase in
                 let active = newPhase != .none
                 dismissAppBubble()

--
Gitblit v1.9.3