diff options
author | stuconnolly <stuart02@gmail.com> | 2009-06-11 09:32:02 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2009-06-11 09:32:02 +0000 |
commit | 46d0d07d23f3b8773d63cd5fa2275fbef6ec49ba (patch) | |
tree | da81eabc8da83dd9480930acab1582552a5f439f /Source | |
parent | 31f564a167a57a4878b0c4027aa6649b8727fb43 (diff) | |
download | sequelpro-46d0d07d23f3b8773d63cd5fa2275fbef6ec49ba.tar.gz sequelpro-46d0d07d23f3b8773d63cd5fa2275fbef6ec49ba.tar.bz2 sequelpro-46d0d07d23f3b8773d63cd5fa2275fbef6ec49ba.zip |
- Rename the preference pane 'Alerts' to 'Alerts & Logs'.
- Move the new disable query logging to the 'Alerts & Logs' pane.
- Hide the display of the new 'Shortcuts' toolbar item.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/SPPreferenceController.m | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/SPPreferenceController.m b/Source/SPPreferenceController.m index 0d77a63f..808e863c 100644 --- a/Source/SPPreferenceController.m +++ b/Source/SPPreferenceController.m @@ -891,7 +891,7 @@ // Notification preferences notificationsItem = [[NSToolbarItem alloc] initWithItemIdentifier:PREFERENCE_TOOLBAR_NOTIFICATIONS]; - [notificationsItem setLabel:NSLocalizedString(@"Alerts", @"")]; + [notificationsItem setLabel:NSLocalizedString(@"Alerts & Logs", @"")]; [notificationsItem setImage:[NSImage imageNamed:@"toolbar-preferences-notifications"]]; [notificationsItem setTarget:self]; [notificationsItem setAction:@selector(displayNotificationPreferences:)]; @@ -905,12 +905,12 @@ [editorItem setAction:@selector(displayEditorPreferences:)]; // Shortcut preferences - shortcutItem = [[NSToolbarItem alloc] initWithItemIdentifier:PREFERENCE_TOOLBAR_SHORTCUTS]; + /*shortcutItem = [[NSToolbarItem alloc] initWithItemIdentifier:PREFERENCE_TOOLBAR_SHORTCUTS]; [shortcutItem setLabel:NSLocalizedString(@"Shortcuts", @"")]; [shortcutItem setImage:[NSImage imageNamed:@"toolbar-preferences-shortcuts"]]; [shortcutItem setTarget:self]; - [shortcutItem setAction:@selector(NSBeep)]; + [shortcutItem setAction:@selector(NSBeep)];*/ // AutoUpdate preferences autoUpdateItem = [[NSToolbarItem alloc] initWithItemIdentifier:PREFERENCE_TOOLBAR_AUTOUPDATE]; |