Skip to content

Commit 9f280a9

Browse files
committed
Fix Matrix_Delegate.native_getValues()
The bug manifested itself by not rendering the wifi icon in the status bar. Change-Id: I7debf3eef387965d774bf66e856812e67c8552a7
1 parent c2622d8 commit 9f280a9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -673,7 +673,7 @@ public boolean hasPerspective() {
673673
return;
674674
}
675675

676-
System.arraycopy(d.mValues, 0, d.mValues, 0, MATRIX_SIZE);
676+
System.arraycopy(d.mValues, 0, values, 0, MATRIX_SIZE);
677677
}
678678

679679
@LayoutlibDelegate

0 commit comments

Comments
 (0)