[Link Removed]
The UseBorderlessWindow setting appears to not be implemented on Mac. We currently only apply the NWWindowStyleMaskBorderless style for tooltips and other "irregular" windows, so we may need an additional check here to apply that style if the borderless checkbox is checked.
if( Definition->IsRegularWindow ) { if( Definition->HasCloseButton ) { WindowStyle = NSWindowStyleMaskClosable; } // In order to support rounded, shadowed windows set the window to be titled - we'll set the content view to cover the whole window WindowStyle |= NSWindowStyleMaskTitled | (FPlatformMisc::IsRunningOnMavericks() ? NSWindowStyleMaskTexturedBackground : NSWindowStyleMaskFullSizeContentView); if( Definition->SupportsMinimize ) { WindowStyle |= NSWindowStyleMaskMiniaturizable; } if( Definition->SupportsMaximize || Definition->HasSizingFrame ) { WindowStyle |= NSWindowStyleMaskResizable; } } else { WindowStyle = NSWindowStyleMaskBorderless; }
There's no existing public thread on this issue, so head over to Questions & Answers just mention UE-166675 in the post.
0 |
Component | UE - Platform - Apple |
---|---|
Affects Versions | 5.0, 5.1 |
Target Fix | 5.6 |
Created | Oct 10, 2022 |
---|---|
Updated | Jul 15, 2024 |