diff --git a/MTMR/Widgets/CurrencyBarItem.swift b/MTMR/Widgets/CurrencyBarItem.swift index 57b26c8..71e5599 100644 --- a/MTMR/Widgets/CurrencyBarItem.swift +++ b/MTMR/Widgets/CurrencyBarItem.swift @@ -150,7 +150,7 @@ class CurrencyBarItem: CustomButtonTouchBarItem { if full { title = String(format: "%@%@‣%@", prefix, postfix, decimalString) } else { - title = String(format: "%.2f", value) + title = String(format: "%@%.2f", prefix, value) } let regularFont = attributedTitle.attribute(.font, at: 0, effectiveRange: nil) as? NSFont ?? NSFont.systemFont(ofSize: 15)