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

Commit a15647ee authored by Mike Digman's avatar Mike Digman Committed by android-build-merger
Browse files

Merge "Fix KeyButtonDrawable dark intensity logic error" into pi-dev am: def16955

am: 9eb59c53

Change-Id: I6b94436fe5637b0f56dc0b5b383e417896a3fc4e
parents c9fce387 9eb59c53
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -63,7 +63,7 @@ public class TintedKeyButtonDrawable extends KeyButtonDrawable {
    }

    public boolean isDarkIntensitySet() {
        return mDarkIntensity == DARK_INTENSITY_NOT_SET;
        return mDarkIntensity != DARK_INTENSITY_NOT_SET;
    }

    public float getDarkIntensity() {