diff options
author | Bibiko <bibiko@eva.mpg.de> | 2010-03-13 14:26:35 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2010-03-13 14:26:35 +0000 |
commit | 710c28ff5d55ccb26b362d80e866d53d2a4583ad (patch) | |
tree | 7a7624beac3623826547c427d639589cb993d23c /Source/TableDump.m | |
parent | 79b24a37b45ad20b8086e481696c758a76092c4e (diff) | |
download | sequelpro-710c28ff5d55ccb26b362d80e866d53d2a4583ad.tar.gz sequelpro-710c28ff5d55ccb26b362d80e866d53d2a4583ad.tar.bz2 sequelpro-710c28ff5d55ccb26b362d80e866d53d2a4583ad.zip |
• fixed printing of Extended Table Info if Create Table Syntax view has focus
- regardless of focus it prints the table info sheet
- only if user selects something then the create syntax will be printed
Diffstat (limited to 'Source/TableDump.m')
-rw-r--r-- | Source/TableDump.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/TableDump.m b/Source/TableDump.m index 78ae1a41..fb42c7f2 100644 --- a/Source/TableDump.m +++ b/Source/TableDump.m @@ -742,7 +742,7 @@ [tableDocumentInstance setDatabases:self]; // Update current selected database - [tableDocumentInstance refreshCurrentDatabase]; + [tableDocumentInstance performSelector:@selector(refreshCurrentDatabase) withObject:nil afterDelay:0.1]; // Update current database tables [tablesListInstance updateTables:self]; |