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

Commit 6fdf6b22 authored by Sunny Goyal's avatar Sunny Goyal Committed by Android (Google) Code Review
Browse files

Merge "Fixing Intrinsic dimensions of FastBitmapDrawable" into ub-now-porkchop

parents 5bb4c94a c424f229
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -113,12 +113,12 @@ class FastBitmapDrawable extends Drawable {

    @Override
    public int getIntrinsicWidth() {
        return getBounds().width();
        return mBitmap.getWidth();
    }

    @Override
    public int getIntrinsicHeight() {
        return getBounds().height();
        return mBitmap.getHeight();
    }

    @Override