summaryrefslogtreecommitdiffstats
path: root/src/com
diff options
context:
space:
mode:
authorSean Stout <sstout@google.com>2017-01-30 15:31:52 -0800
committerSean Stout <sstout@google.com>2017-01-30 23:33:40 +0000
commitb422af09b8f8096f4b77de4138fc83044ff7efbd (patch)
treeea6891848f71be2f366410bb7c6323e49c35036c /src/com
parentbc846e2eee129219f87f529a8a687ff851b0cabd (diff)
downloadandroid_packages_apps_DeskClock-b422af09b8f8096f4b77de4138fc83044ff7efbd.tar.gz
android_packages_apps_DeskClock-b422af09b8f8096f4b77de4138fc83044ff7efbd.tar.bz2
android_packages_apps_DeskClock-b422af09b8f8096f4b77de4138fc83044ff7efbd.zip
Timer view alphas reset on animation end
Bug: 34815224 Test: manual - check breaking case and non-breaking case. Confirm animations still work Change-Id: Ibe57a336e7d773b1398f6c8ec64589ad4e979eb2
Diffstat (limited to 'src/com')
-rw-r--r--src/com/android/deskclock/timer/TimerFragment.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/com/android/deskclock/timer/TimerFragment.java b/src/com/android/deskclock/timer/TimerFragment.java
index 51203a387..1054873e7 100644
--- a/src/com/android/deskclock/timer/TimerFragment.java
+++ b/src/com/android/deskclock/timer/TimerFragment.java
@@ -664,6 +664,8 @@ public final class TimerFragment extends DeskClockFragment {
super.onAnimationEnd(animation);
mTimersView.setTranslationY(0f);
mCreateTimerView.setTranslationY(0f);
+ mTimersView.setAlpha(1f);
+ mCreateTimerView.setAlpha(1f);
}
});
animatorSet.start();