Use new NSAffineTransform method to invert a matrix, not old one

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@13933 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Nicola Pero 2002-06-22 15:46:30 +00:00
parent 90ae9e642e
commit d52e667cb5

View file

@ -3507,7 +3507,7 @@ static NSView* findByTag(NSView *view, int aTag, unsigned *level)
}
(*appImp)(_matrixToWindow, appSel, _boundsMatrix);
[_matrixFromWindow takeMatrixFromTransform: _matrixToWindow];
[_matrixFromWindow inverse];
[_matrixFromWindow invert];
superviewsVisibleRect = [self convertRect: [_super_view visibleRect]
fromView: _super_view];