I set the app windows to floating, to keep them on top:
NSApplication.shared.windows.forEach { window in
window.level = .floating
}
However, this disables the fullscreen mode:
- The green window button maximizes the window size but doesn't activate fullscreen mode
- The "View" menu "Enter Full Screen" item is disabled
Can these two behaviors (floating windows & fullscreen mode) be enabled in parallel? I have checked project settings and developer docs, but didn't find anything.