feat(settings): update window settings

- Adjusted window settings to clarify dependencies between nativeTabs and fullscreen modes.
This commit is contained in:
2026-01-30 18:42:48 +00:00
parent 9f0fc051b8
commit 8fca905918

View File

@@ -30,9 +30,14 @@
//
"window.commandCenter": true,
"window.customTitleBarVisibility": "auto",
"window.nativeFullScreen": false, // Does not work with nativeTabs enabled.
"window.nativeTabs": true,
"window.title": "${rootName}${separator}${profileName}",
// Enabling nativeTabs prevents custom title bar styling, and non-native
// fullscreen modes.
"window.nativeTabs": true,
// Requires nativeTabs to be disabled.
"window.nativeFullScreen": false,
// Requires nativeTabs to be disabled, and nativeFullScreen to be enabled.
"window.titleBarStyle": "custom",
//
// ===========================================================================
// MARK: Workbench