2
10
Fork 2

Allow rotaion in the attachment gallery

Closes #77
Dieser Commit ist enthalten in:
Shadowfacts 2020-01-07 22:19:38 -05:00
Ursprung db4312ee34
Commit bb86e1aafd
Signiert von: shadowfacts
GPG-Schlüssel-ID: 94A5AB95422746E5
4 geänderte Dateien mit 26 neuen und 0 gelöschten Zeilen

Datei anzeigen

@ -69,6 +69,8 @@
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationLandscapeRight</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>

Datei anzeigen

@ -35,6 +35,14 @@ class GalleryViewController: UIPageViewController, UIPageViewControllerDataSourc
return viewControllers?.first
}
override var supportedInterfaceOrientations: UIInterfaceOrientationMask {
if UIDevice.current.userInterfaceIdiom == .phone {
return .allButUpsideDown
} else {
return .all
}
}
init(attachments: [Attachment], sourcesInfo: [LargeImageViewController.SourceInfo?], startIndex: Int) {
self.attachments = attachments
self.sourcesInfo = sourcesInfo

Datei anzeigen

@ -10,6 +10,14 @@ import UIKit
class MainTabBarViewController: UITabBarController, UITabBarControllerDelegate {
override var supportedInterfaceOrientations: UIInterfaceOrientationMask {
if UIDevice.current.userInterfaceIdiom == .phone {
return .portrait
} else {
return .all
}
}
override func viewDidLoad() {
super.viewDidLoad()

Datei anzeigen

@ -29,6 +29,14 @@ class InstanceSelectorTableViewController: UITableViewController {
var urlHandler: AnyCancellable?
var currentQuery: String?
override var supportedInterfaceOrientations: UIInterfaceOrientationMask {
if UIDevice.current.userInterfaceIdiom == .phone {
return .portrait
} else {
return .all
}
}
init() {
super.init(style: .grouped)