Skip to content

Commit

Permalink
Frameworks: 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: I336b95bf198f15edaa4d058db435a2e46c6d8923
  • Loading branch information
kufikugel authored and deadman96385 committed Nov 20, 2014
1 parent 917f013 commit e68d5b9
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -605,9 +605,9 @@ public void onChange(boolean selfChange) {
PowerManager mPowerManager;
PowerManagerInternal mPowerManagerInternal;

float mWindowAnimationScaleSetting = 1.0f;
float mTransitionAnimationScaleSetting = 1.0f;
float mAnimatorDurationScaleSetting = 1.0f;
float mWindowAnimationScaleSetting = 0.75f;
float mTransitionAnimationScaleSetting = 0.75f;
float mAnimatorDurationScaleSetting = 0.75f;
boolean mAnimationsDisabled = false;

final InputManagerService mInputManager;
Expand Down

0 comments on commit e68d5b9

Please sign in to comment.