Source/NSOutlineView.m

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@13198 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Pierre-Yves Rivaille 2002-03-22 01:14:35 +00:00
parent 3c0952b01f
commit 5a121538c8

View file

@ -1327,7 +1327,7 @@ static int _levelForItem(NSOutlineView *outline,
item = nil;
else
item = [self itemAtRow: i];
childIndex = j;
@ -1341,5 +1341,13 @@ static int _levelForItem(NSOutlineView *outline,
return NO;
}
- (BOOL) prepareForDragOperation: (id<NSDraggingInfo>)sender
{
[self setNeedsDisplayInRect: oldDraggingRect];
[self displayIfNeeded];
return YES;
}
@end /* implementation of NSOutlineView */