summaryrefslogtreecommitdiffstats
path: root/macosx
diff options
context:
space:
mode:
authorDamiano Galassi <[email protected]>2017-12-12 09:39:42 +0100
committerDamiano Galassi <[email protected]>2017-12-12 09:39:42 +0100
commiteb8f89a24b348c31cf055e5a5ef4e4f430636c70 (patch)
tree31471a7d42f502768fc0a4fb4875a017834ea759 /macosx
parent237df77778e0831b0ffef30f2cc24b3c4db11750 (diff)
MacGui: use the standard macOS icons for the general and advanced preferences tabs.
Diffstat (limited to 'macosx')
-rw-r--r--macosx/HBPreferencesController.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/macosx/HBPreferencesController.m b/macosx/HBPreferencesController.m
index 36ab70a31..18bb86257 100644
--- a/macosx/HBPreferencesController.m
+++ b/macosx/HBPreferencesController.m
@@ -141,13 +141,13 @@
{
return [self toolbarItemWithIdentifier:ident
label:NSLocalizedString(@"General", @"Preferences General Toolbar Item")
- image:[NSImage imageNamed:@"settings"]];
+ image:[NSImage imageNamed:NSImageNamePreferencesGeneral]];
}
else if ( [ident isEqualToString:TOOLBAR_ADVANCED] )
{
return [self toolbarItemWithIdentifier:ident
label:NSLocalizedString(@"Advanced", @"Preferences Advanced Toolbar Item")
- image:[NSImage imageNamed:@"advanced"]];
+ image:[NSImage imageNamed:NSImageNameAdvanced]];
}
return nil;