diff --git a/Riot/Modules/TabBar/TabBarCoordinator.swift b/Riot/Modules/TabBar/TabBarCoordinator.swift index 270fcd4e0..a924769f5 100644 --- a/Riot/Modules/TabBar/TabBarCoordinator.swift +++ b/Riot/Modules/TabBar/TabBarCoordinator.swift @@ -241,6 +241,7 @@ final class TabBarCoordinator: NSObject, TabBarCoordinatorType { let favouritesViewController: FavouritesViewController = FavouritesViewController.instantiate() favouritesViewController.tabBarItem.tag = Int(TABBAR_FAVOURITES_INDEX) favouritesViewController.accessibilityLabel = VectorL10n.titleFavourites + favouritesViewController.indicatorPresenter = UserIndicatorPresenterWrapper(presenter: indicatorPresenter) return favouritesViewController } @@ -248,6 +249,7 @@ final class TabBarCoordinator: NSObject, TabBarCoordinatorType { let peopleViewController: PeopleViewController = PeopleViewController.instantiate() peopleViewController.tabBarItem.tag = Int(TABBAR_PEOPLE_INDEX) peopleViewController.accessibilityLabel = VectorL10n.titlePeople + peopleViewController.indicatorPresenter = UserIndicatorPresenterWrapper(presenter: indicatorPresenter) return peopleViewController } @@ -255,6 +257,7 @@ final class TabBarCoordinator: NSObject, TabBarCoordinatorType { let roomsViewController: RoomsViewController = RoomsViewController.instantiate() roomsViewController.tabBarItem.tag = Int(TABBAR_ROOMS_INDEX) roomsViewController.accessibilityLabel = VectorL10n.titleRooms + roomsViewController.indicatorPresenter = UserIndicatorPresenterWrapper(presenter: indicatorPresenter) return roomsViewController } diff --git a/changelog.d/5750.change b/changelog.d/5750.change new file mode 100644 index 000000000..be85df5e4 --- /dev/null +++ b/changelog.d/5750.change @@ -0,0 +1 @@ +Activity Indicators: Use new activity indicators on all tabs