Use numeric minus sign for time remaining
This commit is contained in:
parent
297b6247cc
commit
669c52e63d
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@ NSString * formatTimer(long minutes, long seconds, unichar prefix) {
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
long sec = MAX(0, self.duration - self.currentTime);
|
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
|
NSAttributedString *string = [[NSAttributedString alloc] initWithString:text
|
||||||
attributes:fontAttributes];
|
attributes:fontAttributes];
|
||||||
|
|
Loading…
Reference in a new issue