This commit is contained in:
Serhiy Mytrovtsiy
2024-10-27 12:26:14 +01:00
parent 27216355d9
commit 24e95fe945
5 changed files with 7 additions and 7 deletions

View File

@@ -478,7 +478,7 @@ private class ClockView: NSStackView {
private func setTZ() {
self.nameField.stringValue = "\(self.clock.name)"
if let tz = Clock.zones.first(where: { $0.key == self.clock.tz }) {
if let tz = Clock.zones.first(where: { $0.key == self.clock.tz }), tz.key != "local" {
self.nameField.stringValue += " (\(tz.value))"
}
}