diff options
author | 2024-09-10 22:25:39 +0200 | |
---|---|---|
committer | 2024-09-10 22:25:39 +0200 | |
commit | c22559cb3da5c3b9b8eec2323f35cb2e56637abd (patch) | |
tree | 2a96e11405d00d520fd57039cbd474c33bd2a98f /widget/src/container.rs | |
parent | 7683447f87e9aa086d7952d2570ac19606b48900 (diff) | |
parent | e102e89c6ade6fa5bb9a716a1d836a636dcf2918 (diff) | |
download | iced-c22559cb3da5c3b9b8eec2323f35cb2e56637abd.tar.gz iced-c22559cb3da5c3b9b8eec2323f35cb2e56637abd.tar.bz2 iced-c22559cb3da5c3b9b8eec2323f35cb2e56637abd.zip |
Merge pull request #2436 from lufte/scrollby
`scrollable::scroll_by` operation
Diffstat (limited to '')
-rw-r--r-- | widget/src/container.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/widget/src/container.rs b/widget/src/container.rs index c3a66360..3b794099 100644 --- a/widget/src/container.rs +++ b/widget/src/container.rs @@ -459,6 +459,7 @@ pub fn visible_bounds(id: Id) -> Task<Option<Rectangle>> { _state: &mut dyn widget::operation::Scrollable, _id: Option<&widget::Id>, bounds: Rectangle, + _content_bounds: Rectangle, translation: Vector, ) { match self.scrollables.last() { |