From 65d479f8dc06cd41636c82479e28cf55346d490e Mon Sep 17 00:00:00 2001 From: Bibiko Date: Thu, 4 Jun 2009 17:44:32 +0000 Subject: =?UTF-8?q?=E2=80=A2=20fixed=20typo=20for=20"Select=20Active=20Que?= =?UTF-8?q?ry"=20key-binding=20^Y=20not=20^Q?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Source/CMTextView.m | 4 ++-- 1 file 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]; -- cgit v1.2.3