Skip to content

Commit 9bc319a

Browse files
committed
Refine FLEXWindow level; fix #541
1 parent deac628 commit 9bc319a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Classes/ExplorerInterface/FLEXWindow.m

+1-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ - (id)initWithFrame:(CGRect)frame {
1818
// Some apps have windows at UIWindowLevelStatusBar + n.
1919
// If we make the window level too high, we block out UIAlertViews.
2020
// There's a balance between staying above the app's windows and staying below alerts.
21-
// UIWindowLevelStatusBar + 100 seems to hit that balance.
22-
self.windowLevel = UIWindowLevelStatusBar + 100.0;
21+
self.windowLevel = UIWindowLevelAlert - 1;
2322
}
2423
return self;
2524
}

0 commit comments

Comments
 (0)