You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This works well in general but I observe one strange behavior. In order to get the first event I have to drag the mouse almost one centimeter (on a large screen) away from the initial point where the left mouse button was pressed. After that the events are comming in as expected. This effect is critical because it makes any detailed mouse based editing impossible.
I am on macOS 10.15.7 with a large Retina screen and I am using the compose plugin 0.4.0-build185.
The text was updated successfully, but these errors were encountered:
Just incorporated your second proposal into my code and it works great. Thanks a lot. The only drawback is that I have to compute the dragAmount myself now :-) (Which is very easy thanks to Kotlin val dragAmount = change.position - change.previousPosition)
I have a Canvas where I have attached the following code to the modifier in order to catch mouse drag events.
This works well in general but I observe one strange behavior. In order to get the first event I have to drag the mouse almost one centimeter (on a large screen) away from the initial point where the left mouse button was pressed. After that the events are comming in as expected. This effect is critical because it makes any detailed mouse based editing impossible.
I am on macOS 10.15.7 with a large Retina screen and I am using the compose plugin 0.4.0-build185.
The text was updated successfully, but these errors were encountered: