浏览代码

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) }
     }