From f3d3d7094a194cb9b580957d077e608125e82e32 Mon Sep 17 00:00:00 2001 From: mrFq1 <1xxbx0il0@mozmail.com> Date: Sun, 18 Jun 2023 21:29:36 +0800 Subject: [PATCH] fix: mouse over --- .../Views/ContentTabs/Proxies/ProxyGroupView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/ClashX Dashboard/Views/ContentTabs/Proxies/ProxyGroupView.swift b/Sources/ClashX Dashboard/Views/ContentTabs/Proxies/ProxyGroupView.swift index c68648f..b69d130 100644 --- a/Sources/ClashX Dashboard/Views/ContentTabs/Proxies/ProxyGroupView.swift +++ b/Sources/ClashX Dashboard/Views/ContentTabs/Proxies/ProxyGroupView.swift @@ -98,7 +98,7 @@ struct ProxyGroupView: View { ForEach(proxies, id: \.id) { proxy in ProxyItemView( proxy: proxy, - selectable: selectable + selectable: [.select, .fallback].contains(proxyGroup.type) ) .background(proxyGroup.now == proxy.name ? Color.pink.opacity(0.3) : Color(nsColor: .textBackgroundColor)) .cornerRadius(8)