From 9dbf34a308324e750b0f0a823e64cc48169b3a09 Mon Sep 17 00:00:00 2001 From: Andy Uhnak Date: Fri, 4 Mar 2022 16:51:15 +0000 Subject: [PATCH] Use new activity indicators on all tabs --- Riot/Modules/TabBar/TabBarCoordinator.swift | 3 +++ changelog.d/5750.change | 1 + 2 files changed, 4 insertions(+) create mode 100644 changelog.d/5750.change 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