diff options
author | Bibiko <bibiko@eva.mpg.de> | 2010-08-13 10:51:08 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2010-08-13 10:51:08 +0000 |
commit | 1b2508ed0b5489ec2abe1dd148d1a208bf67bd40 (patch) | |
tree | c78426d76e4effef5301fd09cc618ef54b103790 /Source/SPNavigatorController.h | |
parent | 9d5aa655c43de33b8617f8fedd5b948907f547cb (diff) | |
download | sequelpro-1b2508ed0b5489ec2abe1dd148d1a208bf67bd40.tar.gz sequelpro-1b2508ed0b5489ec2abe1dd148d1a208bf67bd40.tar.bz2 sequelpro-1b2508ed0b5489ec2abe1dd148d1a208bf67bd40.zip |
• Navigator
- speed up tree display by caching the sort order of dictionary keys (only for more than 50) - this speeds up the entire Navigator GUI response enormously
- fix the fighting refresh calls in sync mode if user double-clicked at an item in the Navigator which ended up in an unstable tree display
Diffstat (limited to 'Source/SPNavigatorController.h')
-rw-r--r-- | Source/SPNavigatorController.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/SPNavigatorController.h b/Source/SPNavigatorController.h index a664212d..2338b91a 100644 --- a/Source/SPNavigatorController.h +++ b/Source/SPNavigatorController.h @@ -43,14 +43,13 @@ NSMutableDictionary *allSchemaKeys; NSMutableArray *infoArray; NSMutableArray *updatingConnections; - NSMutableDictionary *expandStatus1; NSMutableDictionary *expandStatus2; + NSMutableDictionary *cachedSortedKeys; NSString *selectedKey2; NSRect selectionViewPort2; BOOL ignoreUpdate; BOOL isFiltered; - BOOL isFiltering; NSImage *connectionIcon; |