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

Commit a4a26053 authored by Gilles Debunne's avatar Gilles Debunne
Browse files

Disabled display lists in TextView

Bug 6198276, bug 6193544, bug 6199959

The activation of display list properties on Monday 19th
broke the editable text behovior.

Disabling display lists to fix the blocking rendering
issues.

Change-Id: I5bd0584d1a34c6bb0af79ef45499154e9004eac1
parent 3da55255
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -11680,7 +11680,7 @@ public class TextView extends View implements ViewTreeObserver.OnPreDrawListener
                highlight = null;
            }

            if (canHaveDisplayList() && canvas.isHardwareAccelerated()) {
            if (false /* TEMP patch for bugs 6198276 & 6193544 */ && canHaveDisplayList() && canvas.isHardwareAccelerated()) {
                drawHardwareAccelerated(canvas, layout, highlight, cursorOffsetVertical);
            } else {
                layout.draw(canvas, highlight, mHighlightPaint, cursorOffsetVertical);