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

This commit is contained in:
Sunny Goyal
2014-09-05 14:58:48 +00:00
committed by Android (Google) Code Review
@@ -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