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

This commit is contained in:
Mike Digman
2018-03-19 17:22:39 +00:00
committed by Android (Google) Code Review

View File

@@ -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() {