macos: remove unused vstack

This commit is contained in:
Mitchell Hashimoto
2023-02-19 22:14:38 -08:00
parent 364cca6730
commit 01e8eb89d4

View File

@ -13,10 +13,8 @@ struct TerminalView: View {
private var hasFocus: Bool { surfaceFocus && isKeyWindow } private var hasFocus: Bool { surfaceFocus && isKeyWindow }
var body: some View { var body: some View {
VStack { TerminalSurfaceView(app, hasFocus: hasFocus, title: $title)
TerminalSurfaceView(app, hasFocus: hasFocus, title: $title) .focused($surfaceFocus)
.focused($surfaceFocus) .navigationTitle(title)
.navigationTitle(title)
}
} }
} }