From 939bb22615383d3009cd57509d5a04aad9258d1d Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Wed, 31 Jan 2024 10:22:09 -0800 Subject: [PATCH] macos: do not hardcode true for titlebar tabs --- macos/Sources/Ghostty/Ghostty.Config.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/macos/Sources/Ghostty/Ghostty.Config.swift b/macos/Sources/Ghostty/Ghostty.Config.swift index b636fbcf3..77c08722c 100644 --- a/macos/Sources/Ghostty/Ghostty.Config.swift +++ b/macos/Sources/Ghostty/Ghostty.Config.swift @@ -203,7 +203,7 @@ extension Ghostty { var v = false; let key = "macos-titlebar-tabs" _ = ghostty_config_get(config, &v, key, UInt(key.count)) - return true + return v } var backgroundColor: Color {