Skip to content

Commit

Permalink
Settings: apple can do...we can do as well
Browse files Browse the repository at this point in the history
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
  • Loading branch information
kufikugel authored and arnavgosain committed Sep 5, 2014
1 parent c8a506b commit e177ecb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/com/android/settings/DevelopmentSettings.java
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit e177ecb

Please sign in to comment.