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 {