1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-08 23:24:19 +00:00

UIViewComponentPeer: Fix an issue where the status bar could remain visible in landscape on iPhones

This commit is contained in:
reuk 2025-10-30 19:43:00 +00:00
parent c1c0b58787
commit 87cec3b743
No known key found for this signature in database

View file

@ -637,7 +637,7 @@ MultiTouchMapper<UITouch*> UIViewComponentPeer::currentTouches;
if (isKioskModeView (self))
return true;
return [[[NSBundle mainBundle] objectForInfoDictionaryKey: @"UIStatusBarHidden"] boolValue];
return [super prefersStatusBarHidden];
}
- (BOOL) prefersHomeIndicatorAutoHidden