Merge "Make overview color tinting work properly." into sc-dev am: 4ca60d50bd

Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Launcher3/+/14430443

Change-Id: Id717e1fe720215309e82c716cbe80bd95517200b
This commit is contained in:
TreeHugger Robot
2021-05-04 23:30:35 +00:00
committed by Automerger Merge Worker
@@ -1417,9 +1417,10 @@ public class TaskView extends FrameLayout implements Reusable {
}
private void setColorTint(float amount) {
mSnapshotView.setDimAlpha(amount);
mIconView.setIconColorTint(mTintingColor, amount);
mDigitalWellBeingToast.setBannerColorTint(mTintingColor, amount);
mTintAmount = amount;
mSnapshotView.setDimAlpha(mTintAmount);
mIconView.setIconColorTint(mTintingColor, mTintAmount);
mDigitalWellBeingToast.setBannerColorTint(mTintingColor, mTintAmount);
}
private float getColorTint() {