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

Commit 9362d96a authored by Alan Viverette's avatar Alan Viverette Committed by Android Git Automerger
Browse files

am 783b3d9d: am 001f1e7e: Merge "Add missing invalidation check to drawable cache" into mnc-dev

* commit '783b3d9d':
  Add missing invalidation check to drawable cache
parents af12538d 783b3d9d
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -52,6 +52,6 @@ class DrawableCache extends ThemedResourceCache<Drawable.ConstantState> {


    @Override
    @Override
    public boolean shouldInvalidateEntry(Drawable.ConstantState entry, int configChanges) {
    public boolean shouldInvalidateEntry(Drawable.ConstantState entry, int configChanges) {
        return false;
        return Configuration.needNewResources(configChanges, entry.getChangingConfigurations());
    }
    }
}
}