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

Commit 81408d50 authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Fix blurry downscaled VectorDrawables" into main

parents 19b6418a 904174c3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -540,7 +540,7 @@ bool Tree::allocateBitmapIfNeeded(Cache& cache, int width, int height) {
}

bool Tree::canReuseBitmap(Bitmap* bitmap, int width, int height) {
    return bitmap && width <= bitmap->width() && height <= bitmap->height();
    return bitmap && width == bitmap->width() && height == bitmap->height();
}

void Tree::onPropertyChanged(TreeProperties* prop) {