Loading graphics/java/android/graphics/drawable/DrawableContainer.java +2 −2 Original line number Diff line number Diff line Loading @@ -295,9 +295,9 @@ public class DrawableContainer extends Drawable implements Drawable.Callback { @Override public void setHotspotBounds(int left, int top, int right, int bottom) { if (mHotspotBounds == null) { mHotspotBounds = new Rect(left, top, bottom, right); mHotspotBounds = new Rect(left, top, right, bottom); } else { mHotspotBounds.set(left, top, bottom, right); mHotspotBounds.set(left, top, right, bottom); } if (mCurrDrawable != null) { Loading Loading
graphics/java/android/graphics/drawable/DrawableContainer.java +2 −2 Original line number Diff line number Diff line Loading @@ -295,9 +295,9 @@ public class DrawableContainer extends Drawable implements Drawable.Callback { @Override public void setHotspotBounds(int left, int top, int right, int bottom) { if (mHotspotBounds == null) { mHotspotBounds = new Rect(left, top, bottom, right); mHotspotBounds = new Rect(left, top, right, bottom); } else { mHotspotBounds.set(left, top, bottom, right); mHotspotBounds.set(left, top, right, bottom); } if (mCurrDrawable != null) { Loading