From a73f94e1031e847e6121503fed7c167df4a4524b Mon Sep 17 00:00:00 2001 From: Soh Satoh <20023945+sohsatoh@users.noreply.github.com> Date: Sun, 26 Jan 2025 15:47:09 +0900 Subject: [PATCH] Place divider on QuickTerminalTabBarView properly --- .../Features/QuickTerminal/Tab/QuickTerminalTabBarView.swift | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/macos/Sources/Features/QuickTerminal/Tab/QuickTerminalTabBarView.swift b/macos/Sources/Features/QuickTerminal/Tab/QuickTerminalTabBarView.swift index 5cc607ec3..f6963f1f7 100644 --- a/macos/Sources/Features/QuickTerminal/Tab/QuickTerminalTabBarView.swift +++ b/macos/Sources/Features/QuickTerminal/Tab/QuickTerminalTabBarView.swift @@ -38,12 +38,11 @@ struct QuickTerminalTabBarView: View { currentTab: tabManager.draggedTab ) ) + Divider() + .background(Color(NSColor.separatorColor)) } } - Divider() - .background(Color(NSColor.separatorColor)) - Image(systemName: "plus") .foregroundColor(Color(NSColor.secondaryLabelColor)) .padding(.horizontal, 8)