mirror of
https://github.com/Ryujinx/SDL.git
synced 2024-12-23 12:45:34 +00:00
cocoa: Make SDL_MinimizeWindow() work with borderless windows.
Fixes #6046.
This commit is contained in:
parent
650612fdcb
commit
26948f01a3
|
@ -299,12 +299,14 @@ GetHintCtrlClickEmulateRightClick()
|
|||
static NSUInteger
|
||||
GetWindowWindowedStyle(SDL_Window * window)
|
||||
{
|
||||
NSUInteger style = 0;
|
||||
/* always allow miniaturization, otherwise you can't programatically
|
||||
minimize the window, whether there's a title bar or not */
|
||||
NSUInteger style = NSWindowStyleMaskMiniaturizable;
|
||||
|
||||
if (window->flags & SDL_WINDOW_BORDERLESS) {
|
||||
style = NSWindowStyleMaskBorderless;
|
||||
style |= NSWindowStyleMaskBorderless;
|
||||
} else {
|
||||
style = (NSWindowStyleMaskTitled|NSWindowStyleMaskClosable|NSWindowStyleMaskMiniaturizable);
|
||||
style |= (NSWindowStyleMaskTitled|NSWindowStyleMaskClosable);
|
||||
}
|
||||
if (window->flags & SDL_WINDOW_RESIZABLE) {
|
||||
style |= NSWindowStyleMaskResizable;
|
||||
|
|
Loading…
Reference in a new issue