mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-09 23:34:20 +00:00
UIViewComponentPeer: Fix an issue where the status bar could remain visible in landscape on iPhones
This commit is contained in:
parent
c1c0b58787
commit
87cec3b743
1 changed files with 1 additions and 1 deletions
|
|
@ -637,7 +637,7 @@ MultiTouchMapper<UITouch*> UIViewComponentPeer::currentTouches;
|
||||||
if (isKioskModeView (self))
|
if (isKioskModeView (self))
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
return [[[NSBundle mainBundle] objectForInfoDictionaryKey: @"UIStatusBarHidden"] boolValue];
|
return [super prefersStatusBarHidden];
|
||||||
}
|
}
|
||||||
|
|
||||||
- (BOOL) prefersHomeIndicatorAutoHidden
|
- (BOOL) prefersHomeIndicatorAutoHidden
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue