am 6fdf6b22: Merge "Fixing Intrinsic dimensions of FastBitmapDrawable" into ub-now-porkchop
* commit '6fdf6b22a75cbbd1728aca9e5305b4f68ef99c18': Fixing Intrinsic dimensions of FastBitmapDrawable
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user