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

Commit ba5afec4 authored by android-build-team Robot's avatar android-build-team Robot
Browse files

Snap for 4562879 from a57d161c to pi-release

Change-Id: Ibd6d3ed26d9616b171ad3bbec5e0693b9b6bb603
parents 3577ea89 a57d161c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -151,7 +151,7 @@ public class FilterVignetteRepresentation extends FilterRepresentation implement
    }

    public boolean isCenterSet() {
        return mCenterX != Float.NaN;
        return !Float.isNaN(mCenterX);
    }

    @Override
+3 −3
Original line number Diff line number Diff line
@@ -189,7 +189,7 @@ public class EclipseControl {
    }

    public void paintGrayPoint(Canvas canvas, float x, float y) {
        if (x == Float.NaN) {
        if (Float.isNaN(x)) {
            return;
        }

@@ -206,7 +206,7 @@ public class EclipseControl {
    }

    public void paintPoint(Canvas canvas, float x, float y) {
        if (x == Float.NaN) {
        if (Float.isNaN(x)) {
            return;
        }

@@ -223,7 +223,7 @@ public class EclipseControl {
    }

    void paintRadius(Canvas canvas, float cx, float cy, float rx, float ry) {
        if (cx == Float.NaN) {
        if (Float.isNaN(cx)) {
            return;
        }
        int mSliderColor = 0xFF33B5E5;