summaryrefslogtreecommitdiffstats
path: root/macosx
diff options
context:
space:
mode:
authorDamiano Galassi <[email protected]>2019-07-08 18:59:47 +0200
committerDamiano Galassi <[email protected]>2019-07-08 18:59:47 +0200
commit50f662feef96288eff0405e85bef8e4f19a8d20e (patch)
treefca64009f113f4310c9acb7828351c5d7e27739d /macosx
parentb040895dd627616f23f67af4021ccefcad7f9486 (diff)
MacGui: fix start toolbar button tooltip. Fixes #2184.
Diffstat (limited to 'macosx')
-rw-r--r--macosx/HBController.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/HBController.m b/macosx/HBController.m
index fe2326e77..7dbbf7182 100644
--- a/macosx/HBController.m
+++ b/macosx/HBController.m
@@ -407,7 +407,7 @@ static void *HBControllerQueueCoreContext = &HBControllerQueueCoreContext;
{
_ripToolbarItem.image = [NSImage imageNamed: @"encode"];
_ripToolbarItem.label = _queue.pendingItemsCount > 0 ? NSLocalizedString(@"Start Queue", @"Toolbar Start/Stop Item") : NSLocalizedString(@"Start", @"Toolbar Start/Stop Item");
- _pauseToolbarItem.toolTip = NSLocalizedString(@"Start Encoding", @"Toolbar Start/Stop Item");
+ _ripToolbarItem.toolTip = NSLocalizedString(@"Start Encoding", @"Toolbar Start/Stop Item");
}
}