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 94916e2d4..4a217a78a 100644 --- a/macosx/HBQueueItemWorkingView.m +++ b/macosx/HBQueueItemWorkingView.m @@ -9,6 +9,8 @@ #import "HBQueueItem.h" #import "HBQueue.h" +#import "HBAttributedStringAdditions.h" + @interface HBQueueItemWorkingView () @property (nonatomic, weak) IBOutlet NSProgressIndicator *progressBar; @@ -36,7 +38,7 @@ NSString *progressInfo = note.userInfo[HBQueueProgressNotificationInfoKey]; double progress = [note.userInfo[HBQueueProgressNotificationPercentKey] doubleValue]; - self.progressField.stringValue = progressInfo; + self.progressField.attributedStringValue = progressInfo.HB_smallMonospacedString; self.progressBar.doubleValue = progress; }]; |