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

am: def169559c

Change-Id: If28cc5fbbf7912912949bcfab76f5456d28ad6d8
This commit is contained in:
Mike Digman
2018-03-19 18:24:10 +00:00
committed by android-build-merger

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