Minor bugfix.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@3935 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 1999-03-16 16:56:02 +00:00
parent d62468c82b
commit cf249c79b0
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Mon Mar 15 16:19:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
* Source/NSTextFieldCell.m: Don't draw background by default - be
consistent with OPENSTEP.
Mon Mar 15 16:00:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
* Source/NSApplication.m: ([-runModalSession:]) fix for windowmaker

View file

@ -82,7 +82,7 @@
[self setBackgroundColor: [NSColor textBackgroundColor]];
[self setTextColor: [NSColor textColor]];
[self setFont: [NSFont systemFontOfSize:0]];
draw_background = YES;
draw_background = NO;
return self;
}