Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1802be87 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

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

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

Change-Id: Ic0058ce446e227780d69965e1bd3a763b09c3c45
parents 3a6a22e2 4ca60d50
Loading
Loading
Loading
Loading
+4 −3
Original line number Original line Diff line number Diff line
@@ -1417,9 +1417,10 @@ public class TaskView extends FrameLayout implements Reusable {
    }
    }


    private void setColorTint(float amount) {
    private void setColorTint(float amount) {
        mSnapshotView.setDimAlpha(amount);
        mTintAmount = amount;
        mIconView.setIconColorTint(mTintingColor, amount);
        mSnapshotView.setDimAlpha(mTintAmount);
        mDigitalWellBeingToast.setBannerColorTint(mTintingColor, amount);
        mIconView.setIconColorTint(mTintingColor, mTintAmount);
        mDigitalWellBeingToast.setBannerColorTint(mTintingColor, mTintAmount);
    }
    }


    private float getColorTint() {
    private float getColorTint() {