thorn132
thorn132
I think this issue can be closed now. At the time it was created, asset handlers which included non-trivial processing time (e.g. reading a WGPU render buffer and encoding it...
This would help with `numpy` compatibility too, making it easy for a `PyArray` to borrow from an `ArrayView where T: numpy::Element`.
Yes it is actual behavior I've observed. In my app I have a slider, and a keyboard shortcut to add the current value of the slider to a list. If...
> event::listen_with(|event, _status, _window| { println!("{event:?}"); None}) Ignoring captured events in `listen_with` is done manually by checking the value of `status`. Simply choosing not to ignore captured events is not...
Only one subscription function is intended behavior, you're supposed to use `Subscription::batch` to return multiple.
I know almost nothing about `iced` internals but it looks like generic type erasure on [`program::with_subscription`](https://github.com/iced-rs/iced/blob/f9a6a3051d0a5e1c9f47ebe4071daf5621f8d9c1/program/src/lib.rs#L183) means there isn't a way to know that `.subscription()` is being called on a...
> scroll 10px being the vertical one And maybe `swipe 10px` for horizontal? Should that still allow merging horizontal and vertical scrolling into one line though, e.g. `scroll 10px, swipe...