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

Commit f10d5baa 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: I3dfc0df9df4136ede078dff13ebfc2363d6783b4
parents 5c71595b 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;