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

Commit 872cb95c authored by Alan Viverette's avatar Alan Viverette Committed by Android Git Automerger
Browse files

am 9362d96a: am 783b3d9d: am 001f1e7e: Merge "Add missing invalidation check...

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

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

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