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

Commit 9eb59c53 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

Change-Id: If28cc5fbbf7912912949bcfab76f5456d28ad6d8
parents 42f750f0 def16955
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() {