[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; }
How does TextureRenderTarget2D get TArray<uint8> type data?
Why does the REMOVE method of map container remove elements have memory leaks?
How do I set a material as a post-processing material?
What is the cause of the packaging error falling back to 'GameUserSettings' in ue5?
What is the difference between Camera and CineCamera?
How does TArray loop correctly remove elements in blueprints?
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 |