From 0ace736f46148216c7d2d5b91d3d786ca7760ec5 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Thu, 18 Dec 2025 15:35:48 -0800 Subject: [PATCH] macos: remove the command palette appear/disappear animation Lots of people complained about this and I don't see value in it. --- .../Features/Command Palette/TerminalCommandPalette.swift | 5 ----- 1 file changed, 5 deletions(-) diff --git a/macos/Sources/Features/Command Palette/TerminalCommandPalette.swift b/macos/Sources/Features/Command Palette/TerminalCommandPalette.swift index 19bedd4ee..902186ad3 100644 --- a/macos/Sources/Features/Command Palette/TerminalCommandPalette.swift +++ b/macos/Sources/Features/Command Palette/TerminalCommandPalette.swift @@ -39,13 +39,8 @@ struct TerminalCommandPaletteView: View { } .frame(width: geometry.size.width, height: geometry.size.height, alignment: .top) } - .transition( - .move(edge: .top) - .combined(with: .opacity) - ) } } - .animation(.spring(response: 0.4, dampingFraction: 0.8), value: isPresented) .onChange(of: isPresented) { newValue in // When the command palette disappears we need to send focus back to the // surface view we were overlaid on top of. There's probably a better way