diff options
author | Bradley Sepos <[email protected]> | 2016-12-20 14:10:53 -0500 |
---|---|---|
committer | Bradley Sepos <[email protected]> | 2016-12-20 14:10:53 -0500 |
commit | 8f60ff0a123fc8ddfecd5600e4fef08b3948ad82 (patch) | |
tree | 41619b1db0789decc0bf07c087bd63cd05ae3914 | |
parent | 7070d1769ce92ab0981360d863e8cab62153ade7 (diff) |
macgui: Revise Open Source toolbar button tooltip.
Was also being set dynamically.
-rw-r--r-- | macosx/HBController.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/HBController.m b/macosx/HBController.m index 8b55d6343..f28b15c03 100644 --- a/macosx/HBController.m +++ b/macosx/HBController.m @@ -361,7 +361,7 @@ [toolbarItem setImage:[NSImage imageNamed:@"source"]]; [toolbarItem setLabel:NSLocalizedString(@"Open Source", nil)]; [toolbarItem setPaletteLabel:NSLocalizedString(@"Open Source", nil)]; - [toolbarItem setToolTip:NSLocalizedString(@"Open source and scan the selected title", nil)]; + [toolbarItem setToolTip:NSLocalizedString(@"Open Source", nil)]; return YES; } } |