NSOutlineView bug
NSOutlineView bug
- Subject: NSOutlineView bug
- From: Steve Gehrman <email@hidden>
- Date: Tue, 12 Jun 2001 15:05:53 -0700
shouldCollapseAutoExpandedItemsForDeposited has a bug....
This code below does not work if the destination of the drag is in a
different window than the source. it works fine when the source and
destination are the same NSOutlineView.
Is there a workaround for this bug?
BTW: I hate to whine, but I get responses to my questions about 2% of
the time. Could the guys at Apple make an attempt to answer questions
that go unanswered? At least give me the "We're working on it,
sorry... " response, I'll feel better.
steve
- (BOOL)shouldCollapseAutoExpandedItemsForDeposited:(BOOL)deposited
{
if (!deposited)
return YES;
else if ([[Preferences sharedInstance] collapseAutoExpandedItems])
return YES;
return NO;
}