forked from shadowfacts/Tusker
Fix compiling with Xcode 16
This commit is contained in:
parent
07b6bf33cb
commit
3f0dd599b3
|
@ -447,10 +447,10 @@ extension MainSplitViewController: UISplitViewControllerDelegate {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Transfer the selected tab from the tab bar VC to the sidebar
|
// Transfer the selected tab from the tab bar VC to the sidebar
|
||||||
switch tabBarViewController.selectedTab {
|
switch tabBarViewController.currentTab {
|
||||||
case .timelines, .notifications, .myProfile:
|
case .timelines, .notifications, .myProfile:
|
||||||
// These tabs map 1 <-> 1 with sidebar items
|
// These tabs map 1 <-> 1 with sidebar items
|
||||||
let item = MainSidebarViewController.Item.tab(tabBarViewController.selectedTab)
|
let item = MainSidebarViewController.Item.tab(tabBarViewController.currentTab)
|
||||||
sidebar.select(item: item, animated: false)
|
sidebar.select(item: item, animated: false)
|
||||||
doSelect(item: item)
|
doSelect(item: item)
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,7 @@ class MainTabBarViewController: UITabBarController, UITabBarControllerDelegate {
|
||||||
private var fastSwitcherConstraints: [NSLayoutConstraint] = []
|
private var fastSwitcherConstraints: [NSLayoutConstraint] = []
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
var selectedTab: Tab {
|
var currentTab: Tab {
|
||||||
return Tab(rawValue: selectedIndex)!
|
return Tab(rawValue: selectedIndex)!
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -353,7 +353,7 @@ extension MainTabBarViewController: TuskerRootViewController {
|
||||||
guard presentedViewController == nil else {
|
guard presentedViewController == nil else {
|
||||||
return .stop
|
return .stop
|
||||||
}
|
}
|
||||||
guard let vc = viewController(for: selectedTab) as? StatusBarTappableViewController else {
|
guard let vc = viewController(for: currentTab) as? StatusBarTappableViewController else {
|
||||||
return .continue
|
return .continue
|
||||||
}
|
}
|
||||||
return vc.handleStatusBarTapped(xPosition: xPosition)
|
return vc.handleStatusBarTapped(xPosition: xPosition)
|
||||||
|
|
Loading…
Reference in New Issue