Эх сурвалжийг харах

fix split: preferredPrimaryColumnWidthFraction 40%

marinofaggiana 5 жил өмнө
parent
commit
7d69274ec7

+ 7 - 1
iOSClient/Main/NCSplitViewController.swift

@@ -30,9 +30,15 @@ class NCSplitViewController: UISplitViewController {
     
     override func viewDidLoad() {
         super.viewDidLoad()
-        
+                
         self.delegate = self
         self.preferredDisplayMode = .allVisible
+        if UIScreen.main.bounds.width > UIScreen.main.bounds.height {
+            self.maximumPrimaryColumnWidth = UIScreen.main.bounds.width
+        } else {
+            self.maximumPrimaryColumnWidth = UIScreen.main.bounds.height
+        }
+        self.preferredPrimaryColumnWidthFraction = 0.4
         
         let navigationController = viewControllers.first as? UINavigationController
         if let tabBarController = navigationController?.topViewController as? UITabBarController {