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

Commit e8efdc11 authored by Thales Lima's avatar Thales Lima Committed by Android (Google) Code Review
Browse files

Merge "Check for view measurement before animating" into tm-qpr-dev

parents 64510b48 517cafff
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -84,7 +84,8 @@ public class LauncherSwipeHandlerV2 extends

        final View workspaceView = findWorkspaceView(launchCookies,
                mRecentsView.getRunningTaskView());
        boolean canUseWorkspaceView = workspaceView != null && workspaceView.isAttachedToWindow();
        boolean canUseWorkspaceView = workspaceView != null && workspaceView.isAttachedToWindow()
                && workspaceView.getHeight() > 0;

        mActivity.getRootView().setForceHideBackArrow(true);
        if (!TaskAnimationManager.ENABLE_SHELL_TRANSITIONS) {