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

Commit def16955 authored by Mike Digman's avatar Mike Digman Committed by Android (Google) Code Review
Browse files

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

parents a903eebd 7cdffebe
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() {