commit | d2214e58827904ad11557a15a46302211e3ff1a2 | [log] [tgz] |
---|---|---|
author | Schneider Victor-tulias <victortulias@google.com> | Thu Nov 18 23:57:44 2021 +0000 |
committer | Android (Google) Code Review <android-gerrit@google.com> | Thu Nov 18 23:57:44 2021 +0000 |
tree | eb019a5434ebf486ba93fd1b4fd63fc7413f5a4a | |
parent | bc0798e040ac17f1ee4a92235dfc2439aaef4044 [diff] | |
parent | f394303f9dce75c6d83dd2ac7bb7ad136435e36c [diff] |
Merge "Fix FastBitmapDrawable disabled color filter." into sc-v2-dev
diff --git a/iconloaderlib/src/com/android/launcher3/icons/FastBitmapDrawable.java b/iconloaderlib/src/com/android/launcher3/icons/FastBitmapDrawable.java index 4aa2846..2a5f029 100644 --- a/iconloaderlib/src/com/android/launcher3/icons/FastBitmapDrawable.java +++ b/iconloaderlib/src/com/android/launcher3/icons/FastBitmapDrawable.java
@@ -287,7 +287,7 @@ mat[14] = brightnessI; mat[18] = disabledAlpha; tempFilterMatrix.preConcat(tempBrightnessMatrix); - return new ColorMatrixColorFilter(tempBrightnessMatrix); + return new ColorMatrixColorFilter(tempFilterMatrix); } protected static class FastBitmapConstantState extends ConstantState {