diff options
| author | Mitchell Hashimoto <m@mitchellh.com> | 2025-10-10 07:18:54 -0700 |
|---|---|---|
| committer | Mitchell Hashimoto <m@mitchellh.com> | 2025-10-10 07:19:25 -0700 |
| commit | ba8eae027e7f5496df37bdd6acf30bf8f8b72854 (patch) | |
| tree | 9da9ff6347bbf3774daa0557224b959204348fba /macos/Sources/Features/Terminal/Window Styles | |
| parent | f124bb4975efaad430ff09aa4243075824cab359 (diff) | |
macos: fixed width for downloading/extracting, better padding
Diffstat (limited to 'macos/Sources/Features/Terminal/Window Styles')
| -rw-r--r-- | macos/Sources/Features/Terminal/Window Styles/TerminalWindow.swift | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/macos/Sources/Features/Terminal/Window Styles/TerminalWindow.swift b/macos/Sources/Features/Terminal/Window Styles/TerminalWindow.swift index 8ffdc3e35..661c89121 100644 --- a/macos/Sources/Features/Terminal/Window Styles/TerminalWindow.swift +++ b/macos/Sources/Features/Terminal/Window Styles/TerminalWindow.swift @@ -547,9 +547,10 @@ extension TerminalWindow { @ObservedObject var model: UpdateViewModel var body: some View { + // We use the same top/trailing padding so that it hugs the same. UpdatePill(model: model) .padding(.top, viewModel.accessoryTopPadding) - .padding(.trailing, 10) + .padding(.trailing, viewModel.accessoryTopPadding) } } |
