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

Commit 00767ab6 authored by Arthur Hung's avatar Arthur Hung Committed by Automerger Merge Worker
Browse files

Merge "Fix cursor event would be dropped" into sc-dev am: a8d3d0e5

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

Change-Id: I57cf24a544c77bf8e9a0f433c3f365dd83fe5673
parents 787cdda0 a8d3d0e5
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1840,7 +1840,8 @@ status_t SurfaceComposerClient::createSurfaceChecked(const String8& name, uint32
        }
        ALOGE_IF(err, "SurfaceComposerClient::createSurface error %s", strerror(-err));
        if (err == NO_ERROR) {
            *outSurface = new SurfaceControl(this, handle, gbp, id, w, h, format, transformHint);
            *outSurface =
                    new SurfaceControl(this, handle, gbp, id, w, h, format, transformHint, flags);
        }
    }
    return err;