diff options
author | mltownsend <mltownsend@gmail.com> | 2009-08-26 23:15:13 +0000 |
---|---|---|
committer | mltownsend <mltownsend@gmail.com> | 2009-08-26 23:15:13 +0000 |
commit | 68683d597441310bdb92b036171cb7eb436c3563 (patch) | |
tree | b0a4e92a51fbf3e66ea82c982d65e28d6e98e167 /Source/CMCopyTable.m | |
parent | 8768a5ba73bb1aa181175047a15dfe934e0ec585 (diff) | |
download | sequelpro-68683d597441310bdb92b036171cb7eb436c3563.tar.gz sequelpro-68683d597441310bdb92b036171cb7eb436c3563.tar.bz2 sequelpro-68683d597441310bdb92b036171cb7eb436c3563.zip |
Fix for not editing in CMCopyTable when hitting enter or return which is used in CustomQuery
Diffstat (limited to 'Source/CMCopyTable.m')
-rw-r--r-- | Source/CMCopyTable.m | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/CMCopyTable.m b/Source/CMCopyTable.m index e3a2c0b9..99bff17a 100644 --- a/Source/CMCopyTable.m +++ b/Source/CMCopyTable.m @@ -407,4 +407,9 @@ int MENU_EDIT_COPY_AS_SQL = 2002; columnDefinitions = [[NSArray alloc] initWithArray:columnDefs]; } +- (BOOL)acceptsFirstResponder +{ + return NO; +} + @end |