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

Commit adacec97 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Revert "Only apply server visible to split screen"" into rvc-dev am:...

Merge "Revert "Only apply server visible to split screen"" into rvc-dev am: cf1dd0cd am: b036efd9

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/11986789

Change-Id: I1f5bb00d9117da90ed7763f84c191c819cf8f885
parents ebd42f9d b036efd9
Loading
Loading
Loading
Loading
+1 −5
Original line number Diff line number Diff line
@@ -351,13 +351,9 @@ class InsetsSourceProvider {
    }

    private void updateVisibility() {
        // TODO(b/159699383): remove the client controlled check when the insets visibility can be
        //                    driven by the system UI.
        final boolean isClientControlled = mControlTarget != null
                && mControlTarget.isClientControlled();
        mSource.setVisible(mServerVisible
                && ((!isClientControlled && mDisplayContent.inMultiWindowMode())
                    || mClientVisible));
        mSource.setVisible(mServerVisible && (!isClientControlled || mClientVisible));
        ProtoLog.d(WM_DEBUG_IME,
                "InsetsSource updateVisibility serverVisible: %s clientVisible: %s",
                mServerVisible, mClientVisible);