Version 0.5.0 release.

Minor bug fixes.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@2773 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Scott Christley 1998-03-11 22:00:50 +00:00
parent 4b95b24298
commit b0a80fbf9d
11 changed files with 116 additions and 79 deletions

View file

@ -499,13 +499,19 @@
- (void)drawWithFrame:(NSRect)cellFrame
inView:(NSView *)controlView
{}
{
/* Mark the cell's frame rectangle as needing flush */
[[controlView window] _view:controlView needsFlushInRect:cellFrame];
}
- (void)highlight:(BOOL)lit
withFrame:(NSRect)cellFrame
inView:(NSView *)controlView
{
cell_highlighted = lit;
cell_highlighted = lit;
/* Mark the cell's frame rectangle as needing flush */
[[controlView window] _view:controlView needsFlushInRect:cellFrame];
}
- (BOOL)isHighlighted