mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-06-04 15:10:42 +00:00
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:
parent
9603f104fc
commit
2f023a657a
3 changed files with 9 additions and 2 deletions
|
@ -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>
|
Fri Feb 5 6:00:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
||||||
|
|
||||||
* Source/NSScroller.m: ([-knobRect:]) Correctd code so that the knob
|
* Source/NSScroller.m: ([-knobRect:]) Correctd code so that the knob
|
||||||
|
|
|
@ -39,7 +39,7 @@
|
||||||
[super init];
|
[super init];
|
||||||
[self setAutoresizesSubviews:YES];
|
[self setAutoresizesSubviews:YES];
|
||||||
[self setBackgroundColor:[NSColor lightGrayColor]];
|
[self setBackgroundColor:[NSColor lightGrayColor]];
|
||||||
_copiesOnScroll = YES;
|
_copiesOnScroll = NO;
|
||||||
return self;
|
return self;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -537,7 +537,7 @@ float sx, sy;
|
||||||
PSMatrix *flip = nil;
|
PSMatrix *flip = nil;
|
||||||
float vals[6] = { 1, 0, 0, -1, 0, 1 };
|
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];
|
flip = [PSMatrix matrixFrom: vals];
|
||||||
[matrix concatenateWith: flip];
|
[matrix concatenateWith: flip];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue