mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2024-12-23 13:51:30 +11:00
parent
6dfc78fb50
commit
67b041e231
|
@ -17,6 +17,7 @@ And please only add new entries to the top of this list, right below the `# Unre
|
||||||
- On Web, enable event propagation and let `DeviceEvent`s appear after `WindowEvent`s.
|
- On Web, enable event propagation and let `DeviceEvent`s appear after `WindowEvent`s.
|
||||||
- On Web, take all transient activations on the canvas and window into account to queue a fullscreen request.
|
- On Web, take all transient activations on the canvas and window into account to queue a fullscreen request.
|
||||||
- On Web, remove any fullscreen requests from the queue when an external fullscreen activation was detected.
|
- On Web, remove any fullscreen requests from the queue when an external fullscreen activation was detected.
|
||||||
|
- On Wayland, fix `TouchPhase::Canceled` being sent for moved events.
|
||||||
|
|
||||||
# 0.29.1-beta
|
# 0.29.1-beta
|
||||||
|
|
||||||
|
|
|
@ -121,7 +121,7 @@ impl TouchHandler for WinitState {
|
||||||
device_id: crate::event::DeviceId(crate::platform_impl::DeviceId::Wayland(
|
device_id: crate::event::DeviceId(crate::platform_impl::DeviceId::Wayland(
|
||||||
DeviceId,
|
DeviceId,
|
||||||
)),
|
)),
|
||||||
phase: TouchPhase::Cancelled,
|
phase: TouchPhase::Moved,
|
||||||
location: touch_point.location.to_physical(scale_factor),
|
location: touch_point.location.to_physical(scale_factor),
|
||||||
force: None,
|
force: None,
|
||||||
id: id as u64,
|
id: id as u64,
|
||||||
|
|
Loading…
Reference in a new issue