diff options
| -rw-r--r-- | core/java/android/view/View.java | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/view/View.java b/core/java/android/view/View.java index 1edcff6a0017..1ef46a93ecee 100644 --- a/core/java/android/view/View.java +++ b/core/java/android/view/View.java @@ -11473,7 +11473,7 @@ public class View implements Drawable.Callback, Drawable.Callback2, KeyEvent.Cal                      if (concatMatrix) {                          // Undo the scroll translation, apply the transformation matrix,                          // then redo the scroll translate to get the correct result. -                        if (!hasDisplayList) { +                        if (!useDisplayListProperties) {                              canvas.translate(-transX, -transY);                              canvas.concat(transformToApply.getMatrix());                              canvas.translate(transX, transY);  |