diff options
author | Damiano Galassi <[email protected]> | 2019-07-20 10:15:19 +0200 |
---|---|---|
committer | Damiano Galassi <[email protected]> | 2019-07-20 10:15:19 +0200 |
commit | 40290672aca7579e7c7f220efc36f8569dfde7a1 (patch) | |
tree | 9efd52d36bd2424ef86a96e9628df536fcf9eaab /macosx/HBQueueItemWorkingView.m | |
parent | 988752d2bce5814044f0db63a952d7e3b29f7ff1 (diff) |
MacGui: fix a number of queue regressions.
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; }]; |