Skip to content

Commit e177ecb

Browse files
kufikugelarnavgosain
authored andcommitted
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
1 parent c8a506b commit e177ecb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/com/android/settings/DevelopmentSettings.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1280,7 +1280,7 @@ private void updateAnimationScaleOptions() {
12801280
private void writeAnimationScaleOption(int which, AnimationScalePreference pref,
12811281
Object newValue) {
12821282
try {
1283-
float scale = newValue != null ? Float.parseFloat(newValue.toString()) : 1;
1283+
float scale = newValue != null ? Float.parseFloat(newValue.toString()) : 0.75f;
12841284
mWindowManager.setAnimationScale(which, scale);
12851285
updateAnimationScaleValue(which, pref);
12861286
} catch (RemoteException e) {

0 commit comments

Comments
 (0)