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;