From 5277438009a0db4d5d38e52f706cdb2a7a5c9a89 Mon Sep 17 00:00:00 2001 From: dankito Date: Tue, 8 Sep 2020 01:12:34 +0200 Subject: [PATCH] Renamed back "accounts" and "new" icon to lower case as it's really strange Git, cannot commit upper case name --- ui/BankingiOSApp/BankingiOSApp/TabBarController.swift | 4 ++-- ui/BankingiOSApp/BankingiOSApp/ui/Styles.swift | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ui/BankingiOSApp/BankingiOSApp/TabBarController.swift b/ui/BankingiOSApp/BankingiOSApp/TabBarController.swift index c1c41b51..a5f05daf 100644 --- a/ui/BankingiOSApp/BankingiOSApp/TabBarController.swift +++ b/ui/BankingiOSApp/BankingiOSApp/TabBarController.swift @@ -20,11 +20,11 @@ class TabBarController : UITabBarController, UITabBarControllerDelegate { private func setupTabs() { - let accountsTab = buildControllerAndTabBarItem("Accounts", "Accounts", AccountsDialog(data: data)) + let accountsTab = buildControllerAndTabBarItem("Accounts", "accounts", AccountsDialog(data: data)) let newOptionsTab = InterceptTabClickViewController { self.showNewOptionsActionSheet() } - newOptionsTab.tabBarItem = buildTabBarItem("New", "New") + newOptionsTab.tabBarItem = buildTabBarItem("New", "new") let settingsTab = buildControllerAndTabBarItem("Settings", "Settings", SettingsDialog(data: data)) diff --git a/ui/BankingiOSApp/BankingiOSApp/ui/Styles.swift b/ui/BankingiOSApp/BankingiOSApp/ui/Styles.swift index 5d3f5c03..81b874a3 100644 --- a/ui/BankingiOSApp/BankingiOSApp/ui/Styles.swift +++ b/ui/BankingiOSApp/BankingiOSApp/ui/Styles.swift @@ -15,7 +15,7 @@ class Styles { static let NegativeAmountColor = Color.red - static let AccountFallbackIcon = "Accounts" + static let AccountFallbackIcon = "accounts" }