aboutsummaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorBibiko <bibiko@eva.mpg.de>2009-06-04 17:44:32 +0000
committerBibiko <bibiko@eva.mpg.de>2009-06-04 17:44:32 +0000
commit65d479f8dc06cd41636c82479e28cf55346d490e (patch)
tree60ef5b50f829175e9a1138a23581978a49c2a10d /Source
parent6d3980063a2a37d7c3310a9808312b358ebdb2d3 (diff)
downloadsequelpro-65d479f8dc06cd41636c82479e28cf55346d490e.tar.gz
sequelpro-65d479f8dc06cd41636c82479e28cf55346d490e.tar.bz2
sequelpro-65d479f8dc06cd41636c82479e28cf55346d490e.zip
• fixed typo for "Select Active Query" key-binding ^Y not ^Q
Diffstat (limited to 'Source')
-rw-r--r--Source/CMTextView.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/CMTextView.m b/Source/CMTextView.m
index e519a146..da6e708b 100644
--- a/Source/CMTextView.m
+++ b/Source/CMTextView.m
@@ -545,7 +545,7 @@ NSInteger alphabeticSort(id string1, id string2, void *reverse)
[self showMySQLHelpForCurrentWord:self];
return;
}
- if([charactersIgnMod isEqualToString:@"y"]) // ⇧⌘A select current query
+ if([charactersIgnMod isEqualToString:@"y"]) // ^Y select current query
if(curFlags==(NSControlKeyMask))
{
[self selectCurrentQuery];
@@ -2344,7 +2344,7 @@ NSInteger alphabeticSort(id string1, id string2, void *reverse)
}
if ([[[self class] defaultMenu] itemWithTag:SP_CQ_SELECT_CURRENT_QUERY_MENU_ITEM_TAG] == nil)
{
- NSMenuItem *selectCurrentQueryMenuItem = [[NSMenuItem alloc] initWithTitle:NSLocalizedString(@"Select Active Query", @"Select Active Query") action:@selector(selectCurrentQuery) keyEquivalent:@"q"];
+ NSMenuItem *selectCurrentQueryMenuItem = [[NSMenuItem alloc] initWithTitle:NSLocalizedString(@"Select Active Query", @"Select Active Query") action:@selector(selectCurrentQuery) keyEquivalent:@"y"];
[selectCurrentQueryMenuItem setTag:SP_CQ_SELECT_CURRENT_QUERY_MENU_ITEM_TAG];
[selectCurrentQueryMenuItem setKeyEquivalentModifierMask:NSControlKeyMask];
[menu insertItem:selectCurrentQueryMenuItem atIndex:4];