From fd31210ea486183aa932b3faf19fe8ab250b896b Mon Sep 17 00:00:00 2001 From: Lawrence Chen <54008264+lawrencecchen@users.noreply.github.com> Date: Tue, 3 Mar 2026 18:21:02 -0800 Subject: [PATCH] Fix settings dropdown for Sidebar Branch Layout taking full width (#825) The Picker was missing the controlWidth parameter that all other picker rows in settings use, causing it to expand and hide its label. --- Sources/cmuxApp.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Sources/cmuxApp.swift b/Sources/cmuxApp.swift index 4f7cea7d..3471ca26 100644 --- a/Sources/cmuxApp.swift +++ b/Sources/cmuxApp.swift @@ -2985,7 +2985,8 @@ struct SettingsView: View { "Sidebar Branch Layout", subtitle: sidebarBranchVerticalLayout ? "Vertical: each branch appears on its own line." - : "Inline: all branches share one line." + : "Inline: all branches share one line.", + controlWidth: pickerColumnWidth ) { Picker("", selection: $sidebarBranchVerticalLayout) { Text("Vertical").tag(true)