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

Commit b9f3d6f7 authored by lumark's avatar lumark Committed by android-build-merger
Browse files

Merge "Fix CtsAccessibilityServiceTestCases Fail" into qt-dev am: 82150f3f

am: 447ae2dd

Change-Id: I6d45d3dc92b408fe10c665435068b06cfffa18a9
parents 4070993a 447ae2dd
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -1296,12 +1296,6 @@ class WindowStateAnimator {
            return;
        }

        // We don't apply animation for application main window here since this window type
        // should be controlled by AppWindowToken in general.
        if (mAttrType == TYPE_BASE_APPLICATION) {
            return;
        }

        final int transit;
        if (mEnterAnimationPending) {
            mEnterAnimationPending = false;
@@ -1309,7 +1303,13 @@ class WindowStateAnimator {
        } else {
            transit = WindowManagerPolicy.TRANSIT_SHOW;
        }

        // We don't apply animation for application main window here since this window type
        // should be controlled by AppWindowToken in general.
        if (mAttrType != TYPE_BASE_APPLICATION) {
            applyAnimationLocked(transit, true);
        }

        if (mService.mAccessibilityController != null) {
            mService.mAccessibilityController.onWindowTransitionLocked(mWin, transit);
        }