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/SPFavoritesOutlineView.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/SPFavoritesOutlineView.m')
-rw-r--r-- | Source/SPFavoritesOutlineView.m | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Source/SPFavoritesOutlineView.m b/Source/SPFavoritesOutlineView.m index 69800606..3688f769 100644 --- a/Source/SPFavoritesOutlineView.m +++ b/Source/SPFavoritesOutlineView.m @@ -121,6 +121,13 @@ static NSUInteger SPFavoritesOutlineViewUnindent = 14; { NSRect superFrame = [super frameOfOutlineCellAtRow:rowIndex]; + // Return NSZeroRect if the row is a group row + if ([[self delegate] respondsToSelector:@selector(outlineView:isGroupItem:)]) { + if ([[self delegate] outlineView:self isGroupItem:[self itemAtRow:rowIndex]]) { + return NSZeroRect; + } + } + // On versions of Lion or above, amend the padding appropriately if (systemVersion >= 0x1070 && superFrame.origin.x > SPFavoritesOutlineViewUnindent) { return NSMakeRect(superFrame.origin.x - SPFavoritesOutlineViewUnindent, superFrame.origin.y, superFrame.size.width, superFrame.size.height); |