diff options
author | Bibiko <bibiko@eva.mpg.de> | 2010-10-30 00:12:07 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2010-10-30 00:12:07 +0000 |
commit | 9018787f43507f525ed0aa5036d21017cc8846a2 (patch) | |
tree | 6ff24c69e3c5223a65ca17c58f59192ed2c0fd51 | |
parent | f6ae8533374461cb00133d4cdaaed1c4172c0940 (diff) | |
download | sequelpro-9018787f43507f525ed0aa5036d21017cc8846a2.tar.gz sequelpro-9018787f43507f525ed0aa5036d21017cc8846a2.tar.bz2 sequelpro-9018787f43507f525ed0aa5036d21017cc8846a2.zip |
• enabled enter/return/tab enters the edit mode for Content and Custom Query table
- it will call [self editColumn:0 row:[self selectedRow] withEvent:nil select:YES]; to invoke the incell edit mode, if user tries to modify it the sheet will be displayed if set; further improvements will follow
-rw-r--r-- | Source/SPCopyTable.m | 3 | ||||
-rw-r--r-- | Source/SPTableContent.m | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/Source/SPCopyTable.m b/Source/SPCopyTable.m index 513421a0..21a1bd7f 100644 --- a/Source/SPCopyTable.m +++ b/Source/SPCopyTable.m @@ -742,7 +742,7 @@ NSInteger MENU_EDIT_COPY_AS_SQL = 2003; // TODO: find a better solution HansJB if([self numberOfSelectedRows] == 1 && ([theEvent keyCode] == 36 || [theEvent keyCode] == 76)) { if([[self delegate] isKindOfClass:[SPCustomQuery class]] || [[self delegate] isKindOfClass:[SPTableContent class]]) { - ; + [self editColumn:0 row:[self selectedRow] withEvent:nil select:YES];; } else { for(id item in [self tableColumns]) { // Run in fieldEditorMode? @@ -766,6 +766,7 @@ NSInteger MENU_EDIT_COPY_AS_SQL = 2003; // TODO: find a better solution HansJB else if ([theEvent keyCode] == 48 && ([[self delegate] isKindOfClass:[SPCustomQuery class]] || [[self delegate] isKindOfClass:[SPTableContent class]])) { + [self editColumn:0 row:[self selectedRow] withEvent:nil select:YES]; return; } diff --git a/Source/SPTableContent.m b/Source/SPTableContent.m index ac76f093..c71099b8 100644 --- a/Source/SPTableContent.m +++ b/Source/SPTableContent.m @@ -4196,7 +4196,7 @@ // Check if current edited field is a blob if ((fieldType = [[tableDataInstance columnWithName:[[NSArrayObjectAtIndex([tableContentView tableColumns], column) headerCell] stringValue]] objectForKey:@"typegrouping"]) - && ([fieldType isEqualToString:@"textdata"] || [fieldType isEqualToString:@"blobdata"])) + && ([fieldType isEqualToString:@"textdata"] || [fieldType isEqualToString:@"blobdata"] || [multipleLineEditingButton state] == NSOnState)) { // Cancel editing [control abortEditing]; |