summaryrefslogtreecommitdiffstats
path: root/macosx/HBController.m
diff options
context:
space:
mode:
authorDamiano Galassi <[email protected]>2017-12-20 22:34:30 +0100
committerDamiano Galassi <[email protected]>2017-12-20 22:34:30 +0100
commit138c0d6dbb4cb8ed34adc0bcb152a69af0fb0c9a (patch)
tree6d402c56e71d812641d9b4dd496f1c0fd4967a51 /macosx/HBController.m
parentf0d14d0ba3cf848577f76c0ec145c04d288b1478 (diff)
MacGui: fix a typo and the progress bar that was already hidden after the last VoiceOver improvements.
Diffstat (limited to 'macosx/HBController.m')
-rw-r--r--macosx/HBController.m2
1 files changed, 2 insertions, 0 deletions
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];