From 138c0d6dbb4cb8ed34adc0bcb152a69af0fb0c9a Mon Sep 17 00:00:00 2001 From: Damiano Galassi Date: Wed, 20 Dec 2017 22:34:30 +0100 Subject: [PATCH] MacGui: fix a typo and the progress bar that was already hidden after the last VoiceOver improvements. --- macosx/HBController.m | 2 ++ macosx/HBPreviewView.m | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/macosx/HBController.m b/macosx/HBController.m index 575270c71..2aec9345a 100644 --- a/macosx/HBController.m +++ b/macosx/HBController.m @@ -1061,6 +1061,7 @@ if (fRipIndicatorShown) { self.bottomConstrain.animator.constant = -WINDOW_HEIGHT_OFFSET; + fRipIndicator.hidden = YES; fRipIndicatorShown = NO; // Refresh the toolbar buttons @@ -1075,6 +1076,7 @@ { self.bottomConstrain.animator.constant = 0; fRipIndicatorShown = YES; + fRipIndicator.hidden = NO; // Refresh the toolbar buttons [self.window.toolbar validateVisibleItems]; diff --git a/macosx/HBPreviewView.m b/macosx/HBPreviewView.m index 4e293750f..123223ace 100644 --- a/macosx/HBPreviewView.m +++ b/macosx/HBPreviewView.m @@ -294,7 +294,7 @@ { 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); } -- 2.40.0