Another NSOutlineView Bug
Another NSOutlineView Bug
- Subject: Another NSOutlineView Bug
- From: Steve Gehrman <email@hidden>
- Date: Tue, 12 Jun 2001 17:34:33 -0700
I setting the intercellSpacing width of my NSOutlineView to 1.0. When I
expand any item, the intercell spacing width grows by one. If I query
the intercellspacing it still stays it's 1.0, but visually on screen I
can tell that it has increased. I'm filling in the cells with a
background color, so it's easy to spot when the white space between
cells increases. If I set the width to 2.0, or 3.0 or any value the
same effect happens, it always widens by 1.
Is this a known bug, is it going to be fixed soon? I thought Cocoa a
mature API :)
code....
[outlineView setIntercellSpacing:NSMakeSize(1.0,2.0)];
steve