commit 03134806854a0f33733b458c18d6f423ba0dcf43
parent e07b31e0a19d3d6e81829d7f113af8080b13d7f3
Author: OlegAba <mail@olegaba.com>
Date: Tue, 17 Jan 2023 21:08:51 -0500
Change navigation title to bold
Closes: #341
Diffstat:
1 file changed, 3 insertions(+), 0 deletions(-)
diff --git a/damus/ContentView.swift b/damus/ContentView.swift
@@ -180,10 +180,13 @@ struct ContentView: View {
.shadow(color: Color("DamusPurple"), radius: 2)
case .dms:
Text("DM", comment: "Toolbar label for DM view, which is the English abbreviation for Direct Message.")
+ .bold()
case .notifications:
Text("Notifications", comment: "Toolbar label for Notifications view.")
+ .bold()
case .search:
Text("Global", comment: "Toolbar label for Global view where posts from all connected relay servers appear.")
+ .bold()
case .none:
Text("", comment: "Toolbar label for unknown views. This label would be displayed only if a new timeline view is added but a toolbar label was not explicitly assigned to it yet.")
}