summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Fl_cocoa.mm10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/Fl_cocoa.mm b/src/Fl_cocoa.mm
index 7d28d5747..585e87ab9 100644
--- a/src/Fl_cocoa.mm
+++ b/src/Fl_cocoa.mm
@@ -3151,7 +3151,15 @@ void Fl_Cocoa_Window_Driver::fullscreen_on() {
if (fl_mac_os_version >= 100600) {
FLWindow *nswin = fl_xid(pWindow);
[nswin setStyleMask:NSBorderlessWindowMask]; // 10.6
- [nswin setLevel:NSStatusWindowLevel];
+ if ([nswin isKeyWindow]) {
+ if ([nswin level] != NSStatusWindowLevel) {
+ [nswin setLevel:NSStatusWindowLevel];
+ fixup_window_levels();
+ }
+ } else if([nswin level] != NSNormalWindowLevel) {
+ [nswin setLevel:NSNormalWindowLevel];
+ fixup_window_levels();
+ }
int sx, sy, sw, sh, X, Y, W, H;
int top = fullscreen_screen_top();
int bottom = fullscreen_screen_bottom();