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
Introduction of the a3d113a commit prevents Egui from resetting the latest_pos field of the PointerState struct, which makes it possible to continue dragging a slider, for example, when a cursor leaves a window (which fixed #61). But after this change, it became apparent that Bevy often fails to emit a mouse up event if it happened outside of a focused window (so far I believe it affects only browsers), which results in behaviour similar to this one in the video: #61 (comment).
The text was updated successfully, but these errors were encountered:
can confirm. pointer release event does not arrive if i left click hold in egui, move pointer out of browser and right click on desktop, bevy won't register the left button released event.
Introduction of the a3d113a commit prevents Egui from resetting the
latest_pos
field of thePointerState
struct, which makes it possible to continue dragging a slider, for example, when a cursor leaves a window (which fixed #61). But after this change, it became apparent that Bevy often fails to emit a mouse up event if it happened outside of a focused window (so far I believe it affects only browsers), which results in behaviour similar to this one in the video: #61 (comment).The text was updated successfully, but these errors were encountered: