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

Commit dcd8615a authored by Winson Chung's avatar Winson Chung Committed by android-build-merger
Browse files

Merge "Disable long press recents whenever overview service is bound" into pi-dev am: b1d16f8e

am: e095f0a3

Change-Id: Ifa294fa5718f62cbd922a2064756fe71b49b096b
parents 62e4977c e095f0a3
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -926,7 +926,9 @@ public class NavigationBarFragment extends Fragment implements Callbacks {
    private boolean onLongPressRecents() {
        if (mRecents == null || !ActivityManager.supportsMultiWindow(getContext())
                || !mDivider.getView().getSnapAlgorithm().isSplitScreenFeasible()
                || Recents.getConfiguration().isLowRamDevice) {
                || Recents.getConfiguration().isLowRamDevice
                // If we are connected to the overview service, then disable the recents button
                || mOverviewProxyService.getProxy() != null) {
            return false;
        }