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

Commit fce062c2 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Correct SurfaceView background visibility."

parents 5887049c a2bd3b69
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -492,7 +492,7 @@ public class SurfaceView extends View implements ViewRootImpl.WindowStoppedCallb
        if (mBackgroundControl == null) {
            return;
        }
        if ((mSurfaceFlags & PixelFormat.OPAQUE) == 0) {
        if ((mSurfaceFlags & PixelFormat.OPAQUE) != 0) {
            mBackgroundControl.show();
            mBackgroundControl.setLayer(Integer.MIN_VALUE);
        } else {