From e11bfb513919c51d3f842a367c787ab026d8d868 Mon Sep 17 00:00:00 2001 From: Christoffer Winterkvist Date: Thu, 6 Aug 2026 19:53:48 +0200 Subject: [PATCH] macos: sync appearance when new windows are created (#13324) call `syncAppearance` after `super.showWindow` has been called to ensure that the window is visible. --- macos/Sources/Features/Terminal/TerminalController.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/macos/Sources/Features/Terminal/TerminalController.swift b/macos/Sources/Features/Terminal/TerminalController.swift index c60c2fab7..f14528d9f 100644 --- a/macos/Sources/Features/Terminal/TerminalController.swift +++ b/macos/Sources/Features/Terminal/TerminalController.swift @@ -1159,6 +1159,8 @@ class TerminalController: BaseTerminalController, TabGroupCloseCoordinator.Contr } super.showWindow(sender) + + syncAppearance() } // Shows the "+" button in the tab bar, responds to that click.