From 091471293d4bc640b74f774304bf716e08a54cf6 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sun, 7 Dec 2025 23:21:00 +0100 Subject: [PATCH] ui: fold remote mode label into picker --- apps/macos/Sources/Clawdis/GeneralSettings.swift | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/apps/macos/Sources/Clawdis/GeneralSettings.swift b/apps/macos/Sources/Clawdis/GeneralSettings.swift index 0ca7a2b16..24d1eb56e 100644 --- a/apps/macos/Sources/Clawdis/GeneralSettings.swift +++ b/apps/macos/Sources/Clawdis/GeneralSettings.swift @@ -95,10 +95,7 @@ var body: some View { private var connectionSection: some View { VStack(alignment: .leading, spacing: 8) { - Text("Clawdis runs") - .font(.callout.weight(.semibold)) - - Picker("Mode", selection: self.$state.connectionMode) { + Picker("Clawdis runs", selection: self.$state.connectionMode) { Text("Local (this Mac)").tag(AppState.ConnectionMode.local) Text("Remote over SSH").tag(AppState.ConnectionMode.remote) }