My NSPanel window is always on top of all other apps windows. This is how I load it:
[NSApp beginSheet:[self window] modalForWindow:[rootDocument mainWindow] modalDelegate:self didEndSelector:nil contextInfo:nil];
I've tried to change the level with setLevel
: and different level types, or using orderBack
: or orderFront
: . But it seems these methods have no effect, since the window is always on top.
thanks