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/HBController.m | |
parent | 988752d2bce5814044f0db63a952d7e3b29f7ff1 (diff) |
MacGui: fix a number of queue regressions.
Diffstat (limited to 'macosx/HBController.m')
-rw-r--r-- | macosx/HBController.m | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/macosx/HBController.m b/macosx/HBController.m index 21f08570c..d353a1c1d 100644 --- a/macosx/HBController.m +++ b/macosx/HBController.m @@ -12,6 +12,8 @@ #import "HBTitleSelectionController.h" #import "NSWindow+HBAdditions.h" +#import "HBQueue.h" + #import "HBPresetsManager.h" #import "HBPreset.h" #import "HBMutablePreset.h" @@ -33,7 +35,7 @@ #import "HBRenamePresetController.h" #import "HBAutoNamer.h" -#import "HBQueue.h" +#import "HBAttributedStringAdditions.h" @import HandBrakeKit; @@ -311,7 +313,7 @@ static void *HBControllerQueueCoreContext = &HBControllerQueueCoreContext; { info = note.userInfo[HBQueueProgressNotificationInfoKey]; } - self.progressInfo = [[NSAttributedString alloc] initWithString:info]; + self.progressInfo = info.HB_smallMonospacedString; self.progress = [note.userInfo[HBQueueProgressNotificationPercentKey] doubleValue]; if (self->_visible) |