From c2da5a363ddc6b61214cdb95390d508a3ff464fb Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Mon, 8 Jun 2026 21:09:31 +0200 Subject: [PATCH] Fix missing default interface style on macOS #4116 --- Source/Editor/Options/InterfaceOptions.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Editor/Options/InterfaceOptions.cs b/Source/Editor/Options/InterfaceOptions.cs index 47a4a7880..a12b2fda0 100644 --- a/Source/Editor/Options/InterfaceOptions.cs +++ b/Source/Editor/Options/InterfaceOptions.cs @@ -317,14 +317,14 @@ namespace FlaxEditor.Options /// /// Gets or sets a value indicating whether use native window title bar decorations in child windows. Editor restart required. /// -#if PLATFORM_WINDOWS +#if PLATFORM_WINDOWS || PLATFORM_MAC [DefaultValue(WindowDecorationsType.ClientSide)] #else [DefaultValue(WindowDecorationsType.AutoChildOnly)] #endif [EditorDisplay("Tabs & Windows"), EditorOrder(70), Tooltip("Determines whether use native window title bar decorations. Editor restart required.")] public WindowDecorationsType WindowDecorations { get; set; } = -#if PLATFORM_WINDOWS +#if PLATFORM_WINDOWS || PLATFORM_MAC WindowDecorationsType.ClientSide; #else WindowDecorationsType.AutoChildOnly;