File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -81,6 +81,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8181- ` BorderRadius ` not exposed in root crate. [ #1972 ] ( https://github.com/iced-rs/iced/pull/1972 )
8282- Outdated ` ROADMAP ` . [ #1958 ] ( https://github.com/iced-rs/iced/pull/1958 )
8383- ` iced_wgpu ` freezing on empty layers. [ #1996 ] ( https://github.com/iced-rs/iced/pull/1996 )
84+ - ` image::Viewer ` reacting to any scroll event. [ #1998 ] ( https://github.com/iced-rs/iced/pull/1998 )
8485
8586Many thanks to...
8687
@@ -99,6 +100,7 @@ Many thanks to...
99100- @JonathanLindsey
100101- @kr105
101102- @marienz
103+ - @malramsay64
102104- @nicksenger
103105- @nicoburns
104106- @Redhawk18
Original file line number Diff line number Diff line change @@ -154,7 +154,7 @@ where
154154
155155 match event {
156156 Event :: Mouse ( mouse:: Event :: WheelScrolled { delta } ) => {
157- let Some ( cursor_position) = cursor. position ( ) else {
157+ let Some ( cursor_position) = cursor. position_over ( bounds ) else {
158158 return event:: Status :: Ignored ;
159159 } ;
160160
You can’t perform that action at this time.
0 commit comments