Skip to content

Commit c6ffd69

Browse files
reidabjcesarmobile
authored andcommitted
CB-12366: (ios) Reduce tmpWindow level to prevent overlapping statusbar
This closes #209
1 parent 783c23b commit c6ffd69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ios/CDVInAppBrowser.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ - (void)show:(CDVInvokedUrlCommand*)command
243243
UIWindow *tmpWindow = [[UIWindow alloc] initWithFrame:frame];
244244
UIViewController *tmpController = [[UIViewController alloc] init];
245245
[tmpWindow setRootViewController:tmpController];
246-
[tmpWindow setWindowLevel:UIWindowLevelAlert];
246+
[tmpWindow setWindowLevel:UIWindowLevelNormal];
247247

248248
[tmpWindow makeKeyAndVisible];
249249
[tmpController presentViewController:nav animated:YES completion:nil];

0 commit comments

Comments
 (0)