From 03134806854a0f33733b458c18d6f423ba0dcf43 Mon Sep 17 00:00:00 2001 From: OlegAba Date: Tue, 17 Jan 2023 21:08:51 -0500 Subject: [PATCH] Change navigation title to bold Closes: #341 --- damus/ContentView.swift | 3 +++ 1 file changed, 3 insertions(+) diff --git a/damus/ContentView.swift b/damus/ContentView.swift index 85266886..82cdd0ca 100644 --- 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.") }