More drawing fixes.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@3666 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 1999-02-05 20:30:50 +00:00
parent 6fb1e83973
commit 3a3476456f
3 changed files with 9 additions and 2 deletions

View file

@ -1,3 +1,10 @@
Fri Feb 5 19:46:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
* Source/NSView.m: Coordinate conversion fixe by
Benhur-de-Oliveira.Stein@imag.fr
* Source/NSClipView.m: turn copy-on-scroll off by defualt until it's
working properly.
Fri Feb 5 6:00:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
* Source/NSScroller.m: ([-knobRect:]) Correctd code so that the knob

View file

@ -39,7 +39,7 @@
[super init];
[self setAutoresizesSubviews:YES];
[self setBackgroundColor:[NSColor lightGrayColor]];
_copiesOnScroll = YES;
_copiesOnScroll = NO;
return self;
}

View file

@ -537,7 +537,7 @@ float sx, sy;
PSMatrix *flip = nil;
float vals[6] = { 1, 0, 0, -1, 0, 1 };
vals[5] = parent->bounds.size.height;
vals[5] = view->bounds.size.height;
flip = [PSMatrix matrixFrom: vals];
[matrix concatenateWith: flip];
}