Skip to content

Commit

Permalink
SystemUI: StatusIconContainer: Shorten entry animations
Browse files Browse the repository at this point in the history
Change-Id: Ic6d1e5f9b1f67ecd3fec77890df15b38485ac3ab
  • Loading branch information
idoybh authored and aswin7469 committed Apr 21, 2024
1 parent fa055fa commit 51407ac
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,7 @@ public void applyToView(View view) {
public AnimationFilter getAnimationFilter() {
return mAnimationFilter;
}
}.setDuration(200).setDelay(50);
}.setDuration(100);

private static final AnimationProperties X_ANIMATION_PROPERTIES = new AnimationProperties() {
private AnimationFilter mAnimationFilter = new AnimationFilter().animateX();
Expand All @@ -517,7 +517,7 @@ public AnimationFilter getAnimationFilter() {
public AnimationFilter getAnimationFilter() {
return mAnimationFilter;
}
}.setDuration(200);
}.setDuration(100);

private static final AnimationProperties ANIMATE_ALL_PROPERTIES = new AnimationProperties() {
private AnimationFilter mAnimationFilter = new AnimationFilter().animateX().animateY()
Expand All @@ -527,5 +527,5 @@ public AnimationFilter getAnimationFilter() {
public AnimationFilter getAnimationFilter() {
return mAnimationFilter;
}
}.setDuration(200);
}.setDuration(100);
}

0 comments on commit 51407ac

Please sign in to comment.