diff options
author | Bibiko <bibiko@eva.mpg.de> | 2010-08-12 21:31:41 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2010-08-12 21:31:41 +0000 |
commit | f26b9a4fa9adc76e34ca440c3119bd8f1359f967 (patch) | |
tree | c7a218700bd950b7ab71ebac30190665d47760fe /Source | |
parent | e07cb607138c5918977f27193a004c98526f896b (diff) | |
download | sequelpro-f26b9a4fa9adc76e34ca440c3119bd8f1359f967.tar.gz sequelpro-f26b9a4fa9adc76e34ca440c3119bd8f1359f967.tar.bz2 sequelpro-f26b9a4fa9adc76e34ca440c3119bd8f1359f967.zip |
• reverted changes of refreshing of the Navigator if it is not visible
- this should fix recent crashes/execeptions
Diffstat (limited to 'Source')
-rw-r--r-- | Source/SPNavigatorController.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/SPNavigatorController.m b/Source/SPNavigatorController.m index e4037c95..157a7abe 100644 --- a/Source/SPNavigatorController.m +++ b/Source/SPNavigatorController.m @@ -483,7 +483,7 @@ static NSComparisonResult compareStrings(NSString *s1, NSString *s2, void* conte [updatingConnections removeObject:connectionName]; - if([[self window] isVisible] || wasNotShown) { + if([[self window] isVisible]) { [outlineSchema1 reloadData]; [outlineSchema2 reloadData]; |