From 82bf84f82797fd625a5a4646796661c32db9f883 Mon Sep 17 00:00:00 2001 From: Richard Frith-MacDonald Date: Thu, 22 Mar 2007 16:07:25 +0000 Subject: [PATCH] Fix code accidentally commented out. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@24920 72102866-910b-0410-8b05-ffd578937521 --- Source/NSAffineTransform.m | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Source/NSAffineTransform.m b/Source/NSAffineTransform.m index 43179a9e1..ad3918343 100644 --- a/Source/NSAffineTransform.m +++ b/Source/NSAffineTransform.m @@ -399,7 +399,6 @@ static NSAffineTransformStruct identityTransform = { */ - (void) scaleXBy: (float)scaleX yBy: (float)scaleY { -/* if (_isIdentity && scaleX == 1.0) { if (scaleY == 1.0) @@ -429,7 +428,7 @@ static NSAffineTransformStruct identityTransform = { return; } } -*/ + A *= scaleX; B *= scaleX; C *= scaleY;