Corrections for state changes and drawing with cells and controls.

Corrections to NSWindow for key and main window notification and
first responder handling.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@1642 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
gnustep 1996-07-10 20:43:47 +00:00
parent acbe822337
commit 63b2a3f068
6 changed files with 140 additions and 101 deletions

View file

@ -280,12 +280,12 @@ right:(unsigned)rightDigits
//
- (void)drawCell:(NSCell *)aCell
{
if (cell == aCell) [cell drawWithFrame:frame inView:self];
if (cell == aCell) [cell drawWithFrame:bounds inView:self];
}
- (void)drawCellInside:(NSCell *)aCell
{
if (cell == aCell) [cell drawInteriorWithFrame:frame inView:self];
if (cell == aCell) [cell drawInteriorWithFrame:bounds inView:self];
}
- (void)selectCell:(NSCell *)aCell