diff options
author | Bibiko <bibiko@eva.mpg.de> | 2009-09-23 15:23:01 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2009-09-23 15:23:01 +0000 |
commit | da0dba0eae177dcb27993a64ef2fb0e4cd0b018b (patch) | |
tree | 49a61f88b578833d49a79cb1b8643b515977361b /Source/TableDocument.m | |
parent | 1d0c281511ce7b35c7e06475d7e147db5a656575 (diff) | |
download | sequelpro-da0dba0eae177dcb27993a64ef2fb0e4cd0b018b.tar.gz sequelpro-da0dba0eae177dcb27993a64ef2fb0e4cd0b018b.tar.bz2 sequelpro-da0dba0eae177dcb27993a64ef2fb0e4cd0b018b.zip |
• while a connection will be initialized via a SPF file disable the possibility to choose an other connection from the favorites' list; otherwise the SPF file could run out of sync
Diffstat (limited to 'Source/TableDocument.m')
-rw-r--r-- | Source/TableDocument.m | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/TableDocument.m b/Source/TableDocument.m index 01d73820..6c1bd042 100644 --- a/Source/TableDocument.m +++ b/Source/TableDocument.m @@ -214,6 +214,11 @@ // Deselect all favorites [[connectionController valueForKeyPath:@"favoritesTable"] deselectAll:connectionController]; + // Suppress the possibility to choose an other connection from the favorites + // if a connection should initialized by SPF file. Otherwise it could happen + // that the SPF file runs out of sync. + [[connectionController valueForKeyPath:@"favoritesTable"] setEnabled:NO]; + NSData *pData = [NSData dataWithContentsOfFile:path options:NSUncachedRead error:&readError]; |