From e177ecb19538875d5ab9cc3d593c859e89b0a292 Mon Sep 17 00:00:00 2001 From: Lars Greiss Date: Sat, 19 Apr 2014 15:47:36 +0200 Subject: [PATCH] Settings: apple can do...we can do as well incredible apple engineers speeded up the overall UI and reduced per default slightly the animation scales. Well we do as well and reduce it from 1 to 0.75...smooth, looks well and does not break anything Change-Id: Ifab9c0111429389d715319e4f272a8298c4dba80 --- src/com/android/settings/DevelopmentSettings.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/android/settings/DevelopmentSettings.java b/src/com/android/settings/DevelopmentSettings.java index 4c61f5131..841952172 100644 --- a/src/com/android/settings/DevelopmentSettings.java +++ b/src/com/android/settings/DevelopmentSettings.java @@ -1280,7 +1280,7 @@ private void updateAnimationScaleOptions() { private void writeAnimationScaleOption(int which, AnimationScalePreference pref, Object newValue) { try { - float scale = newValue != null ? Float.parseFloat(newValue.toString()) : 1; + float scale = newValue != null ? Float.parseFloat(newValue.toString()) : 0.75f; mWindowManager.setAnimationScale(which, scale); updateAnimationScaleValue(which, pref); } catch (RemoteException e) {