From 2331e178351c92363dcb7b100533ffe8aa18ea3d Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Thu, 11 Dec 2025 14:12:24 -0800 Subject: [PATCH] macos: change tab color label to circle --- .../Terminal/Window Styles/TerminalWindow.swift | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/macos/Sources/Features/Terminal/Window Styles/TerminalWindow.swift b/macos/Sources/Features/Terminal/Window Styles/TerminalWindow.swift index 5874f354e..3db1b275b 100644 --- a/macos/Sources/Features/Terminal/Window Styles/TerminalWindow.swift +++ b/macos/Sources/Features/Terminal/Window Styles/TerminalWindow.swift @@ -644,7 +644,7 @@ extension TerminalWindow { } -/// A pill-shaped visual indicator displayed in the tab accessory view that shows +/// A small circle indicator displayed in the tab accessory view that shows /// the user-assigned tab color. When no color is set, the view is hidden. private struct TabColorIndicatorView: View { /// The tab color to display. @@ -652,13 +652,13 @@ private struct TabColorIndicatorView: View { var body: some View { if let color = tabColor.displayColor { - Capsule() + Circle() .fill(Color(color)) - .frame(width: 12, height: 4) + .frame(width: 6, height: 6) } else { - Capsule() + Circle() .fill(Color.clear) - .frame(width: 12, height: 4) + .frame(width: 6, height: 6) .hidden() } }