In [drawRect:]use the frame of the view, not the given rect.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@16094 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Fred Kiefer 2003-03-01 00:44:45 +00:00
parent 3e2ff7560b
commit 7c6c6de482

View file

@ -168,7 +168,7 @@
- (void) drawRect: (NSRect)rect
{
[slideCell drawWithFrame: rect inView: self];
[slideCell drawWithFrame: [self frame] inView: self];
}
@end