From 89669b4596431da5bd3df086bee7bc661b50d85d Mon Sep 17 00:00:00 2001 From: neon443 <69979447+neon443@users.noreply.github.com> Date: Fri, 4 Jul 2025 08:29:05 +0100 Subject: [PATCH] add minimize button --- ShhShell/Views/Terminal/ShellTabView.swift | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ShhShell/Views/Terminal/ShellTabView.swift b/ShhShell/Views/Terminal/ShellTabView.swift index 2ab5535..ca10142 100644 --- a/ShhShell/Views/Terminal/ShellTabView.swift +++ b/ShhShell/Views/Terminal/ShellTabView.swift @@ -60,6 +60,11 @@ struct ShellTabView: View { withAnimation { selectedID = id } } } + Button() { + dismiss() + } label: { + Image(systemName: "arrow.down.right.and.arrow.up.left") + } } } .frame(height: 30)