SDL_cocoawindow.m: fix what seems to be a typo in commit 649c36c5:

NSWindowCollectionBehaviorNone -> NSWindowCollectionBehaviorFullScreenNone
This commit is contained in:
Ozkan Sezer
2026-02-06 06:04:40 +03:00
parent 649c36c576
commit b1d95b9d20

View File

@@ -2128,7 +2128,7 @@ void Cocoa_SetWindowResizable(_THIS, SDL_Window * window, SDL_bool resizable)
/* resizable windows are Spaces-friendly: they get the "go fullscreen" toggle button on their titlebar. */
[nswindow setCollectionBehavior:NSWindowCollectionBehaviorFullScreenPrimary];
} else {
[nswindow setCollectionBehavior:NSWindowCollectionBehaviorNone];
[nswindow setCollectionBehavior:NSWindowCollectionBehaviorFullScreenNone];
}
}}