diff options
Diffstat (limited to 'macosx/HBQueueItemWorkingView.m')
-rw-r--r-- | macosx/HBQueueItemWorkingView.m | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/macosx/HBQueueItemWorkingView.m b/macosx/HBQueueItemWorkingView.m index cedfdb224..fcef24707 100644 --- a/macosx/HBQueueItemWorkingView.m +++ b/macosx/HBQueueItemWorkingView.m @@ -34,7 +34,7 @@ NSString *progressInfo = note.userInfo[HBQueueProgressNotificationInfoKey]; double progress = [note.userInfo[HBQueueProgressNotificationPercentKey] doubleValue]; - self.progressField.attributedStringValue = progressInfo.HB_smallMonospacedString; + self.progressField.stringValue = progressInfo; self.progressBar.doubleValue = progress; }]; @@ -47,6 +47,8 @@ [self removeObservers]; } }]; + + self.progressField.font = [NSFont monospacedDigitSystemFontOfSize:NSFont.smallSystemFontSize weight:NSFontWeightRegular]; } - (void)removeObservers |