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

Commit f62a69b4 authored by Sunny Goyal's avatar Sunny Goyal
Browse files

Do not change page as a result of showOverview command

Bug: 77723744
Change-Id: I7166e8da36c700cd66bbe4c20bf8618926c65b9c
parent 32d5be02
Loading
Loading
Loading
Loading
+1 −7
Original line number Diff line number Diff line
@@ -193,13 +193,7 @@ public class OverviewCommandHelper {

        @Override
        protected boolean handleCommand(long elapsedTime) {
            RecentsView recents = mHelper.getVisibleRecentsView();
            if (recents != null) {
                recents.snapToTaskAfterNext();
                return true;
            } else {
                return false;
            }
            return mHelper.getVisibleRecentsView() != null;
        }
    }