From 7fb0b4e1ebc37ce6604000da6232531207c122d1 Mon Sep 17 00:00:00 2001 From: benithors Date: Sat, 10 Jan 2026 23:10:39 +0100 Subject: [PATCH] macOS: fix model picker formatting + protocol sync --- apps/macos/Sources/Clawdbot/ConfigSettings.swift | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/apps/macos/Sources/Clawdbot/ConfigSettings.swift b/apps/macos/Sources/Clawdbot/ConfigSettings.swift index c9f6b74db..64f623d5e 100644 --- a/apps/macos/Sources/Clawdbot/ConfigSettings.swift +++ b/apps/macos/Sources/Clawdbot/ConfigSettings.swift @@ -138,12 +138,13 @@ struct ConfigSettings: View { .contentShape(Rectangle()) .background( RoundedRectangle(cornerRadius: 6) - .fill(Color(nsColor: .textBackgroundColor)) - ) + .fill( + Color(nsColor: .textBackgroundColor))) .overlay( RoundedRectangle(cornerRadius: 6) - .stroke(Color.secondary.opacity(0.25), lineWidth: 1) - ) + .stroke( + Color.secondary.opacity(0.25), + lineWidth: 1)) .popover(isPresented: self.$isModelPickerOpen, arrowEdge: .bottom) { self.modelPickerPopover } @@ -783,8 +784,8 @@ struct ConfigSettings: View { choice.provider, self.modelRef(for: choice), ] - .joined(separator: " ") - .lowercased() + .joined(separator: " ") + .lowercased() return tokens.allSatisfy { haystack.contains($0) } } }