diff options
author | rowanbeentje <rowan@beent.je> | 2012-11-18 18:48:19 +0000 |
---|---|---|
committer | rowanbeentje <rowan@beent.je> | 2012-11-18 18:48:19 +0000 |
commit | a1ffa498a2e23d5f98822d5ee2e7c2a0cc8b2e8e (patch) | |
tree | a5e505eed1f30e52d3b931635fc09a4c88ddeb9c /Source/SPConnectionControllerDelegate.m | |
parent | 4d3952f94de816b00ae1a84d110396bc5c5edabb (diff) | |
download | sequelpro-a1ffa498a2e23d5f98822d5ee2e7c2a0cc8b2e8e.tar.gz sequelpro-a1ffa498a2e23d5f98822d5ee2e7c2a0cc8b2e8e.tar.bz2 sequelpro-a1ffa498a2e23d5f98822d5ee2e7c2a0cc8b2e8e.zip |
- Add some NSOutlineView logic to prevent disclosure triangles from displaying on 10.5 for the quick connect item and favourites title; thanks to schlabberdog for both reporting and testing this issue
Diffstat (limited to 'Source/SPConnectionControllerDelegate.m')
-rw-r--r-- | Source/SPConnectionControllerDelegate.m | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/SPConnectionControllerDelegate.m b/Source/SPConnectionControllerDelegate.m index 38137b1b..e986b271 100644 --- a/Source/SPConnectionControllerDelegate.m +++ b/Source/SPConnectionControllerDelegate.m @@ -240,6 +240,11 @@ static NSString *SPQuickConnectImageWhite = @"quick-connect-icon-white.pdf"; return YES; } +- (BOOL)outlineView:(NSOutlineView *)outlineView isItemExpandable:(id)item +{ + return (item != quickConnectItem && ![item isLeaf]); +} + - (BOOL)outlineView:(NSOutlineView *)outlineView shouldShowOutlineCellForItem:(id)item { return ([[item parentNode] parentNode] != nil); |