Fix being able to rotate into landscape on iOS 14

This commit is contained in:
Shadowfacts 2020-09-21 18:45:52 -04:00
parent fd0054addf
commit 0e60e74a8a
Signed by: shadowfacts
GPG Key ID: 94A5AB95422746E5
1 changed files with 8 additions and 0 deletions

View File

@ -20,6 +20,14 @@ class MainSplitViewController: UISplitViewController {
private var tabBarViewController: MainTabBarViewController!
override var supportedInterfaceOrientations: UIInterfaceOrientationMask {
if UIDevice.current.userInterfaceIdiom == .phone {
return .portrait
} else {
return .all
}
}
init(mastodonController: MastodonController) {
self.mastodonController = mastodonController