From b6f54dbe2b96c50b5f3e801501f55ba5623dcda6 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 18 Jan 2026 16:37:20 +0000 Subject: [PATCH 1/2] Initial plan From b554c1ef0042f6aca8fa3bfb106d45faae5a9b1a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 18 Jan 2026 16:40:16 +0000 Subject: [PATCH 2/2] Fix Rules window size mismatch causing content to be cut off Co-authored-by: Anof-cyber <39705906+Anof-cyber@users.noreply.github.com> --- MacOS/ProxyBridge/ProxyBridge/ProxyBridgeGUI.swift | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/MacOS/ProxyBridge/ProxyBridge/ProxyBridgeGUI.swift b/MacOS/ProxyBridge/ProxyBridge/ProxyBridgeGUI.swift index e47106a..17d03ee 100644 --- a/MacOS/ProxyBridge/ProxyBridge/ProxyBridgeGUI.swift +++ b/MacOS/ProxyBridge/ProxyBridge/ProxyBridgeGUI.swift @@ -57,7 +57,6 @@ struct ProxyBridgeGUIApp: App { Window("Proxy Rules", id: "proxy-rules") { ProxyRulesView(viewModel: viewModel) - .frame(width: 700, height: 500) } .windowResizability(.contentSize) .defaultPosition(.center) @@ -125,7 +124,7 @@ class AppDelegate: NSObject, NSApplicationDelegate { } @objc func openProxyRules() { - openWindow(title: "Proxy Rules", size: NSSize(width: 700, height: 500), resizable: true) { + openWindow(title: "Proxy Rules", size: NSSize(width: 1200, height: 600), resizable: true) { ProxyRulesView(viewModel: AppDelegate.viewModel!) } }