forked from organicmaps/organicmaps
[iOS] Fixed theme in carplay
This commit is contained in:
parent
c754c32c52
commit
1459a2d5ee
3 changed files with 6 additions and 2 deletions
|
@ -733,6 +733,9 @@ using namespace osm_auth_ios;
|
|||
didConnectCarInterfaceController:(CPInterfaceController *)interfaceController
|
||||
toWindow:(CPWindow *)window API_AVAILABLE(ios(12.0)) {
|
||||
[self.carplayService setupWithWindow:window interfaceController:interfaceController];
|
||||
if (@available(iOS 13.0, *)) {
|
||||
window.overrideUserInterfaceStyle = UIUserInterfaceStyleUnspecified;
|
||||
}
|
||||
[self updateAppearanceFromWindow:self.window toWindow:window isCarplayActivated:YES];
|
||||
|
||||
[Statistics logEvent:kStatCarplayActivated];
|
||||
|
|
|
@ -9,6 +9,9 @@ final class ThemeManager: NSObject {
|
|||
|
||||
private override init() {
|
||||
super.init()
|
||||
if #available(iOS 13.0, *) {
|
||||
MapsAppDelegate.theApp().window.overrideUserInterfaceStyle = .light
|
||||
}
|
||||
}
|
||||
|
||||
@objc static func setDarkModeEnabled(_ val: Bool) {
|
||||
|
|
|
@ -230,8 +230,6 @@
|
|||
<string>UIInterfaceOrientationLandscapeLeft</string>
|
||||
<string>UIInterfaceOrientationLandscapeRight</string>
|
||||
</array>
|
||||
<key>UIUserInterfaceStyle</key>
|
||||
<string>Light</string>
|
||||
<key>UTImportedTypeDeclarations</key>
|
||||
<array>
|
||||
<dict>
|
||||
|
|
Loading…
Add table
Reference in a new issue