From 669c52e63d44252a5adcdfef373bb444cfed95ed Mon Sep 17 00:00:00 2001 From: Christopher Snowhill Date: Sun, 16 Jan 2022 00:18:29 -0800 Subject: [PATCH] Use numeric minus sign for time remaining --- Window/TimeField.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Window/TimeField.m b/Window/TimeField.m index e15dc3ff3..f593665c1 100644 --- a/Window/TimeField.m +++ b/Window/TimeField.m @@ -41,7 +41,7 @@ NSString * formatTimer(long minutes, long seconds, unichar prefix) { else { long sec = MAX(0, self.duration - self.currentTime); - text = formatTimer(sec / 60, sec % 60, 0x2012); // Hyphen + text = formatTimer(sec / 60, sec % 60, 0x2212); // Minus } NSAttributedString *string = [[NSAttributedString alloc] initWithString:text attributes:fontAttributes];