diff options
author | Bibiko <bibiko@eva.mpg.de> | 2010-10-22 12:04:28 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2010-10-22 12:04:28 +0000 |
commit | e4db241d2ddf8f4548355addb207ab6c77967e70 (patch) | |
tree | a41966d64688d720aa829928713b2556e9596214 | |
parent | c7926a24a7e892a5c4db8e23caa01ca059d29b56 (diff) | |
download | sequelpro-e4db241d2ddf8f4548355addb207ab6c77967e70.tar.gz sequelpro-e4db241d2ddf8f4548355addb207ab6c77967e70.tar.bz2 sequelpro-e4db241d2ddf8f4548355addb207ab6c77967e70.zip |
• fixed bug while editing views if a filter is in usage
- make sure that setTableDetails will always called for the current selected table even if edited field origin is another table
-rw-r--r-- | Source/SPTableContent.m | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/SPTableContent.m b/Source/SPTableContent.m index e9a496ae..dfb54e69 100644 --- a/Source/SPTableContent.m +++ b/Source/SPTableContent.m @@ -3621,13 +3621,12 @@ } - // Reload table after each editing due to complex declarations if(isFirstChangeInView) { // Set up the table details for the new table, and trigger an interface update // if the view was modified for the very first time NSDictionary *tableDetails = [NSDictionary dictionaryWithObjectsAndKeys: - tableForColumn, @"name", + selectedTable, @"name", [tableDataInstance columns], @"columns", [tableDataInstance columnNames], @"columnNames", [tableDataInstance getConstraints], @"constraints", |