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

Commit d70f58c2 authored by Winson Chung's avatar Winson Chung
Browse files

Prevent the dismiss icon from fading when multistack debugging is enabled.

Change-Id: I52db4222391cb7d922b9778cbc10a269451d10c5
parent a2e94c85
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -815,8 +815,10 @@ public class TaskStackView extends FrameLayout implements TaskStack.TaskStackCal
        }

        // Start dozing
        if (!mConfig.multiStackEnabled) {
            mUIDozeTrigger.startDozing();
        }
    }

    /** Requests this task stacks to start it's enter-recents animation */
    public void startEnterRecentsAnimation(ViewAnimation.TaskViewEnterContext ctx) {
@@ -1219,7 +1221,7 @@ public class TaskStackView extends FrameLayout implements TaskStack.TaskStackCal
        RecentsTaskLoader.getInstance().loadTaskData(task);

        // If the doze trigger has already fired, then update the state for this task view
        if (mUIDozeTrigger.hasTriggered()) {
        if (mConfig.multiStackEnabled || mUIDozeTrigger.hasTriggered()) {
            tv.setNoUserInteractionState();
        }