iced-yoda/winit
Ian Douglas Scott 621713fe15
wayland: Fix handling of discrete/value120 scroll events
- Should test `!= 0`, not `> 0`; can scroll in either direction
- Test both vertical and horizontal
- Use `value120` scroll if present (in which case, discrete is 0)

I guess events should really have both line and pixel scroll, since some
widgets want to use the pixel scroll values for input devices that have
both? But I guess winit and Iced both need to be changed for that...
2026-01-28 12:01:00 -05:00
..
src wayland: Fix handling of discrete/value120 scroll events 2026-01-28 12:01:00 -05:00
Cargo.toml winit/wayland: Subsurfaces for drag surfaces 2026-01-23 14:00:38 -05:00
README.md Update outdated READMEs of subcrates 2024-05-27 13:47:57 +02:00

iced_winit

Documentation Crates.io License Discord Server

iced_winit offers some convenient abstractions on top of iced_native to quickstart development when using winit.

It exposes a renderer-agnostic Application trait that can be implemented and then run with a simple call. The use of this trait is optional. A conversion module is provided for users that decide to implement a custom event loop.

The native target