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

Commit 5203194f authored by Svetoslav Ganov's avatar Svetoslav Ganov
Browse files

Minot twaek of the NumberPicker

Change-Id: I3ab1d27633e7b75f77d09084964cc17edddb9394
parent 01fa0d7a
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -549,13 +549,11 @@ public class NumberPicker extends LinearLayout {
        final ValueAnimator fadeScroller = ObjectAnimator.ofInt(this, "selectorPaintAlpha", 255, 0);
        final ObjectAnimator showIncrementButton = ObjectAnimator.ofFloat(mIncrementButton,
                "alpha", 0, 1);
        final ObjectAnimator showInputText = ObjectAnimator.ofFloat(mInputText,
                "alpha", 0, 1);
        final ObjectAnimator showDecrementButton = ObjectAnimator.ofFloat(mDecrementButton,
                "alpha", 0, 1);
        mShowInputControlsAnimator = new AnimatorSet();
        mShowInputControlsAnimator.playTogether(fadeScroller, showIncrementButton,
                showInputText, showDecrementButton);
                showDecrementButton);
        mShowInputControlsAnimator.addListener(new AnimatorListenerAdapter() {
            private boolean mCanceled = false;