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

Commit c9b68e11 authored by Alan Viverette's avatar Alan Viverette Committed by Android Git Automerger
Browse files

am df188d41: am d30f6fba: Merge "Cannot set Pivot X,Y values from setPivotX,...

am df188d41: am d30f6fba: Merge "Cannot set Pivot X,Y values from setPivotX, setPivotY API" into lmp-mr1-dev

* commit 'df188d41':
  Cannot set Pivot X,Y values from setPivotX, setPivotY API
parents 44a711cc df188d41
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -216,7 +216,7 @@ public class RotateDrawable extends Drawable implements Drawable.Callback {
     * @attr ref android.R.styleable#RotateDrawable_pivotX
     */
    public void setPivotX(float pivotX) {
        if (mState.mPivotX == pivotX) {
        if (mState.mPivotX != pivotX) {
            mState.mPivotX = pivotX;
            invalidateSelf();
        }
@@ -242,7 +242,7 @@ public class RotateDrawable extends Drawable implements Drawable.Callback {
     * @see #isPivotXRelative()
     */
    public void setPivotXRelative(boolean relative) {
        if (mState.mPivotXRel == relative) {
        if (mState.mPivotXRel != relative) {
            mState.mPivotXRel = relative;
            invalidateSelf();
        }
@@ -270,7 +270,7 @@ public class RotateDrawable extends Drawable implements Drawable.Callback {
     * @attr ref android.R.styleable#RotateDrawable_pivotY
     */
    public void setPivotY(float pivotY) {
        if (mState.mPivotY == pivotY) {
        if (mState.mPivotY != pivotY) {
            mState.mPivotY = pivotY;
            invalidateSelf();
        }
@@ -296,7 +296,7 @@ public class RotateDrawable extends Drawable implements Drawable.Callback {
     * @see #isPivotYRelative()
     */
    public void setPivotYRelative(boolean relative) {
        if (mState.mPivotYRel == relative) {
        if (mState.mPivotYRel != relative) {
            mState.mPivotYRel = relative;
            invalidateSelf();
        }