Do not force an immediate display in editXxx: and selectXxxx:

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@14538 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
nico 2002-09-24 14:35:52 +00:00
parent 736ce4cbdc
commit 3e69a4287e

View file

@ -1773,8 +1773,6 @@ static NSColor *shadowCol;
{
[textObject mouseDown: theEvent];
}
[textObject display];
}
- (void) endEditing: (NSText*)textObject
@ -1820,7 +1818,6 @@ static NSColor *shadowCol;
[self titleRectForBounds: aRect].size.height)];
[[textObject textContainer] setWidthTracksTextView: NO];
[[textObject textContainer] setWidthTracksTextView: NO];
}
if (_formatter != nil)
@ -1854,7 +1851,6 @@ static NSColor *shadowCol;
[textObject setSelectedRange: NSMakeRange (selStart, selLength)];
[textObject setDelegate: anObject];
[[controlView window] makeFirstResponder: textObject];
[textObject display];
}
- (BOOL) sendsActionOnEndEditing