diff options
author | Bibiko <bibiko@eva.mpg.de> | 2010-12-15 21:14:41 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2010-12-15 21:14:41 +0000 |
commit | 418ab5876c0a278ed0e2b86d5215739f95bc6add (patch) | |
tree | 11650833173ca7e65576ffb6b1b07a57e5a11f34 | |
parent | 8fe53cf1cdfdc3939b5aea81eda4227d04da2dea (diff) | |
download | sequelpro-418ab5876c0a278ed0e2b86d5215739f95bc6add.tar.gz sequelpro-418ab5876c0a278ed0e2b86d5215739f95bc6add.tar.bz2 sequelpro-418ab5876c0a278ed0e2b86d5215739f95bc6add.zip |
• fixed issue to be able to cancel via ESC the in-cell editing of the tablesListView (and avoiding to call completion for Query Editor) and Bundle Editor's outlineView; in addition the focus remains at the view
-rw-r--r-- | Source/SPBundleEditorController.m | 2 | ||||
-rw-r--r-- | Source/SPTablesList.m | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/Source/SPBundleEditorController.m b/Source/SPBundleEditorController.m index dffcb20c..32f5b581 100644 --- a/Source/SPBundleEditorController.m +++ b/Source/SPBundleEditorController.m @@ -1257,7 +1257,7 @@ */ - (BOOL)control:(NSControl *)control textView:(NSTextView *)textView doCommandBySelector:(SEL)command { - if ( [[control window] methodForSelector:command] == [[control window] methodForSelector:@selector(_cancelKey:)] || + if ( [[control window] methodForSelector:command] == [[control window] methodForSelector:@selector(cancelOperation:)] || [textView methodForSelector:command] == [textView methodForSelector:@selector(complete:)] ) { //abort editing diff --git a/Source/SPTablesList.m b/Source/SPTablesList.m index 54e0f400..da787a6d 100644 --- a/Source/SPTablesList.m +++ b/Source/SPTablesList.m @@ -1358,11 +1358,12 @@ [[control window] makeFirstResponder:control]; return TRUE; - } else if ( [[control window] methodForSelector:command] == [[control window] methodForSelector:@selector(_cancelKey:)] || + } else if ( [[control window] methodForSelector:command] == [[control window] methodForSelector:@selector(cancelOperation:)] || [textView methodForSelector:command] == [textView methodForSelector:@selector(complete:)] ) { //abort editing [control abortEditing]; + [[NSApp mainWindow] makeFirstResponder:tablesListView]; return TRUE; } else{ |