How can I execute a left mouse click on a `Compose...
# compose-desktop
j
How can I execute a left mouse click on a
ComposeScene
? I already tried
scene.sendPointerEvent(PointerEventType.Press, offset)
but either I am doing something wrong (maybe with the
Offset
?) or more is required to achieve this. (Regarding the offset, I already tried pixel coordinates and a scale from
0f
to
1f
.)
1
i
Just send two events:
PointerEventType.Press
and then
PointerEventType.Release
j
oh thanks, that was it :)