From 16f5af8b323a4f027903f0d5f2a8d81abbb32295 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Thu, 28 Sep 2023 08:36:02 -0700 Subject: [PATCH] macos: relable tabs when config is reloaded --- macos/Sources/AppDelegate.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/macos/Sources/AppDelegate.swift b/macos/Sources/AppDelegate.swift index 2b0c10f5a..793ea4b95 100644 --- a/macos/Sources/AppDelegate.swift +++ b/macos/Sources/AppDelegate.swift @@ -194,8 +194,9 @@ class AppDelegate: NSObject, ObservableObject, NSApplicationDelegate, GhosttyApp //MARK: - GhosttyAppStateDelegate func configDidReload(_ state: Ghostty.AppState) { - // Config could change keybindings, so update our menu + // Config could change keybindings, so update everything that depends on that syncMenuShortcuts() + windowManager.relabelTabs() // Config could change window appearance syncAppearance()