mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 15:11:37 +00:00
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:
parent
3c0952b01f
commit
5a121538c8
1 changed files with 9 additions and 1 deletions
|
@ -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 */
|
||||
|
||||
|
|
Loading…
Reference in a new issue