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

Commit e1c169c9 authored by Michael Wright's avatar Michael Wright Committed by Gerrit Code Review
Browse files

Merge "Fix color mismatch of pointers"

parents 8857e6b6 cdff2db6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -371,7 +371,7 @@ public class PointerLocationView extends View implements InputDeviceListener,
                }
                if (haveLast) {
                    canvas.drawLine(lastX, lastY, x, y, mPathPaint);
                    final Paint paint = ps.mTraceCurrent[i] ? mCurrentPointPaint : mPaint;
                    final Paint paint = ps.mTraceCurrent[i - 1] ? mCurrentPointPaint : mPaint;
                    canvas.drawPoint(lastX, lastY, paint);
                    drawn = true;
                }