Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1c5a86ab authored by Romain Guy's avatar Romain Guy Committed by Android Git Automerger
Browse files

am cb039124: Merge "Don\'t draw with invalid display lists Bug #10301674" into klp-dev

* commit 'cb039124':
  Don't draw with invalid display lists Bug #10301674
parents e4d5c881 cb039124
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1449,7 +1449,7 @@ public final class ViewRootImpl implements ViewParent,
                            }

                            DisplayList displayList = mView.mDisplayList;
                            if (displayList != null) {
                            if (displayList != null && displayList.isValid()) {
                                layerCanvas.drawDisplayList(displayList, null,
                                        DisplayList.FLAG_CLIP_CHILDREN);
                            } else {