Преглед на файлове

VLCTabBarCoordinator: Change tab order

Move the Video tab to the first position

Co-authored-by: Carola Nitz <nitz.carola@googlemail.com>
Soomin Lee преди 7 години
родител
ревизия
b7514ad830
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      Sources/VLCTabBarCoordinator.swift

+ 1 - 1
Sources/VLCTabBarCoordinator.swift

@@ -94,7 +94,7 @@ class VLCTabbarCooordinator: NSObject, VLCMediaViewControllerDelegate {
             selectedImage: UIImage(named: "Settings"))
         settingsVC.tabBarItem.accessibilityIdentifier = VLCAccessibilityIdentifier.settings
 
-        let controllers = [audioVC, serverVC, videoVC, settingsVC]
+        let controllers = [videoVC, audioVC, serverVC, settingsVC]
         tabBarController.viewControllers = controllers.map { UINavigationController(rootViewController: $0) }
     }