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

Commit e962acef authored by Sunny Goyal's avatar Sunny Goyal Committed by Android Git Automerger
Browse files

am 6fdf6b22: Merge "Fixing Intrinsic dimensions of FastBitmapDrawable" into ub-now-porkchop

* commit '6fdf6b22':
  Fixing Intrinsic dimensions of FastBitmapDrawable
parents 0cc5a656 6fdf6b22
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