am 94db720f: Slow down text scale animation

* commit '94db720f7daf99923cc8e3d5ba8765b5529913f1':
  Slow down text scale animation
diff --git a/src/com/android/calculator2/CalculatorActivity.java b/src/com/android/calculator2/CalculatorActivity.java
index cd386eb..88f495d 100644
--- a/src/com/android/calculator2/CalculatorActivity.java
+++ b/src/com/android/calculator2/CalculatorActivity.java
@@ -248,7 +248,7 @@
                 ObjectAnimator.ofFloat(textView, View.SCALE_Y, textScale, 1.0f),
                 ObjectAnimator.ofFloat(textView, View.TRANSLATION_X, translationX, 0.0f),
                 ObjectAnimator.ofFloat(textView, View.TRANSLATION_Y, translationY, 0.0f));
-        animatorSet.setDuration(getResources().getInteger(android.R.integer.config_shortAnimTime));
+        animatorSet.setDuration(getResources().getInteger(android.R.integer.config_mediumAnimTime));
         animatorSet.setInterpolator(new AccelerateDecelerateInterpolator());
         animatorSet.start();
     }