We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca19ae4 commit 34727e4Copy full SHA for 34727e4
CodeEdit/Features/TabBar/Views/TabBarItemView.swift
@@ -101,9 +101,7 @@ struct TabBarItemView: View {
101
102
/// Close the current tab.
103
func closeAction() {
104
- if prefs.preferences.general.tabBarStyle == .native {
105
- isAppeared = false
106
- }
+ isAppeared = false
107
withAnimation(
108
.easeOut(duration: prefs.preferences.general.tabBarStyle == .native ? 0.15 : 0.20)
109
) {
CodeEdit/WorkspaceView.swift
@@ -70,6 +70,7 @@ struct WorkspaceView: View {
70
if workspace.workspaceClient != nil, let model = workspace.statusBarModel {
71
ZStack {
72
tabContent
73
+ .animation(nil, value: UUID())
74
}
75
.frame(maxWidth: .infinity, maxHeight: .infinity)
76
.safeAreaInset(edge: .top, spacing: 0) {
0 commit comments