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

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

Temporarily workaround rendering issues.

- Disable reusing old stack view tasks

Bug: 25998134
Change-Id: Idf74f9b371a9ae6d89f5752708ac6adb675b55a7
parent c2b16e14
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -142,7 +142,8 @@ public class RecentsView extends FrameLayout implements TaskStackView.TaskStackV
    public void setTaskStack(TaskStack stack) {
        RecentsConfiguration config = Recents.getConfiguration();
        mStack = stack;
        if (config.getLaunchState().launchedReuseTaskStackViews) {
        // Disable reusing task stack views until the visibility bug is fixed. b/25998134
        if (false && config.getLaunchState().launchedReuseTaskStackViews) {
            if (mTaskStackView != null) {
                // If onRecentsHidden is not triggered, we need to the stack view again here
                mTaskStackView.reset();