am fd5e64da: Merge "MiterLimit represent a ratio itself, no need to scale" into lmp-dev

* commit 'fd5e64da378f6293b34879eb951cd612bcc3dfae':
  MiterLimit represent a ratio itself, no need to scale
This commit is contained in:
ztenghui
2014-08-06 22:09:11 +00:00
committed by Android Git Automerger

View File

@@ -883,7 +883,7 @@ public class VectorDrawable extends Drawable {
strokePaint.setStrokeCap(fullPath.mStrokeLineCap);
}
strokePaint.setStrokeMiter(fullPath.mStrokeMiterlimit * minScale);
strokePaint.setStrokeMiter(fullPath.mStrokeMiterlimit);
strokePaint.setColor(applyAlpha(fullPath.mStrokeColor, stackedAlpha));
strokePaint.setStrokeWidth(fullPath.mStrokeWidth * minScale);