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

Commit cb619627 authored by Robert Carr's avatar Robert Carr Committed by android-build-merger
Browse files

Merge "SurfaceView: Fix missing override for SurfaceControl proxy" into oc-dev am: 42b3610a

am: 2fa5800d

Change-Id: I83c4a2e592b7385b1aa6dc3157bd6ea5950c624a
parents 4fabf266 2fa5800d
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -1196,6 +1196,12 @@ public class SurfaceView extends View implements ViewRootImpl.WindowStoppedCallb
            mBackgroundControl.deferTransactionUntil(handle, frame);
        }

        @Override
        public void deferTransactionUntil(Surface barrier, long frame) {
            super.deferTransactionUntil(barrier, frame);
            mBackgroundControl.deferTransactionUntil(barrier, frame);
        }

        void updateBackgroundVisibility() {
            if (mOpaque && mVisible) {
                mBackgroundControl.show();