[darwin]AlwaysOnTop: NSStatusWindowLevel -> NSFloatingWindowLevel

This commit is contained in:
Lea Anthony 2023-09-30 14:27:48 +10:00
commit 86b6e10620
No known key found for this signature in database
GPG key ID: 33DAF7BB90A58405

View file

@ -184,7 +184,7 @@ void windowSetSize(void* nsWindow, int width, int height) {
// Set NSWindow always on top
void windowSetAlwaysOnTop(void* nsWindow, bool alwaysOnTop) {
// Set window always on top on main thread
[(WebviewWindow*)nsWindow setLevel:alwaysOnTop ? NSStatusWindowLevel : NSNormalWindowLevel];
[(WebviewWindow*)nsWindow setLevel:alwaysOnTop ? NSFloatingWindowLevel : NSNormalWindowLevel];
}
// Load URL in NSWindow