mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-31 22:40:48 +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
9904d58b7f
commit
4e0b9fd45d
1 changed files with 9 additions and 1 deletions
|
@ -1327,7 +1327,7 @@ static int _levelForItem(NSOutlineView *outline,
|
||||||
item = nil;
|
item = nil;
|
||||||
else
|
else
|
||||||
item = [self itemAtRow: i];
|
item = [self itemAtRow: i];
|
||||||
|
|
||||||
childIndex = j;
|
childIndex = j;
|
||||||
|
|
||||||
|
|
||||||
|
@ -1341,5 +1341,13 @@ static int _levelForItem(NSOutlineView *outline,
|
||||||
return NO;
|
return NO;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
- (BOOL) prepareForDragOperation: (id<NSDraggingInfo>)sender
|
||||||
|
{
|
||||||
|
[self setNeedsDisplayInRect: oldDraggingRect];
|
||||||
|
[self displayIfNeeded];
|
||||||
|
|
||||||
|
return YES;
|
||||||
|
}
|
||||||
|
|
||||||
@end /* implementation of NSOutlineView */
|
@end /* implementation of NSOutlineView */
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue