From ec6e0da8224a54dd7273adc2a797f149fd9795c8 Mon Sep 17 00:00:00 2001
From: Ariver <shanghai3168@gmail.com>
Date: Wed, 20 May 2026 12:51:53 +0800
Subject: [PATCH] chore: mark stable baseline as 7.6.0
---
Apptag/ContentView.swift | 8 +++++---
1 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/Apptag/ContentView.swift b/Apptag/ContentView.swift
index 8e1cf0e..117a25e 100644
--- a/Apptag/ContentView.swift
+++ b/Apptag/ContentView.swift
@@ -613,11 +613,13 @@
private var quickSearchOverlay: some View {
GeometryReader { proxy in
if quickSearchVisible {
- QuickSearchBackdropClickView {
- closeQuickSearch()
- }
+ Color.black.opacity(0.001)
.frame(width: proxy.size.width, height: proxy.size.height)
.ignoresSafeArea()
+ .contentShape(Rectangle())
+ .onTapGesture {
+ closeQuickSearch()
+ }
.zIndex(899)
QuickSearchOverlayView(
--
Gitblit v1.9.3