Skip to content

Commit c7b8776

Browse files
author
Xavier Ducrohet
committed
Merge 2402ad60 from honeycomb-mr1. do not merge.
LayoutLib: Fix Canvas_Delegate.native_concat(). Change-Id: I863c43d65a929816ac7c9e69addcc647dac1878b
1 parent 4e4ad34 commit c7b8776

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tools/layoutlib/bridge/src/android/graphics/Canvas_Delegate.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ public void draw(Graphics2D graphics, Paint_Delegate paintDelegate) {
443443
AffineTransform matrixTx = matrixDelegate.getAffineTransform();
444444

445445
// combine them so that the given matrix is applied after.
446-
currentTx.preConcatenate(matrixTx);
446+
currentTx.concatenate(matrixTx);
447447

448448
// give it to the graphics2D as a new matrix replacing all previous transform
449449
snapshot.setTransform(currentTx);

0 commit comments

Comments
 (0)