]> granicus.if.org Git - handbrake/commitdiff
MacGui: fix a typo and the progress bar that was already hidden after the last VoiceO...
authorDamiano Galassi <damiog@gmail.com>
Wed, 20 Dec 2017 21:34:30 +0000 (22:34 +0100)
committerDamiano Galassi <damiog@gmail.com>
Wed, 20 Dec 2017 21:34:30 +0000 (22:34 +0100)
macosx/HBController.m
macosx/HBPreviewView.m

index 575270c71f4b71f4a96440b08a96a571e3078414..2aec9345a9d303b96d081c647e59ee8d5a173287 100644 (file)
         if (fRipIndicatorShown)
         {
             self.bottomConstrain.animator.constant = -WINDOW_HEIGHT_OFFSET;
+            fRipIndicator.hidden = YES;
             fRipIndicatorShown = NO;
 
             // Refresh the toolbar buttons
         {
             self.bottomConstrain.animator.constant = 0;
             fRipIndicatorShown = YES;
+            fRipIndicator.hidden = NO;
 
             // Refresh the toolbar buttons
             [self.window.toolbar validateVisibleItems];
index 4e293750f1592282c2f9f1ddbaa76ff83113daad..123223ace3bf8d30a0f51f552a9453fb7c68884b 100644 (file)
 {
     if (self.image)
     {
-        return [NSString stringWithFormat:NSLocalizedString(@"Previw Image Size: %zu x %zu, Scale: %.0f%%", nil), CGImageGetWidth(self.image), CGImageGetHeight(self.image), self.scale * 100];
+        return [NSString stringWithFormat:NSLocalizedString(@"Preview Image, Size: %zu x %zu, Scale: %.0f%%", nil), CGImageGetWidth(self.image), CGImageGetHeight(self.image), self.scale * 100];
     }
     return NSLocalizedString(@"No image", nil);
 }