diff options
author | 2023-04-21 01:03:57 +0200 | |
---|---|---|
committer | 2023-04-21 01:03:57 +0200 | |
commit | 99fc717b7c268abe49b1000d9f111b12562aafcf (patch) | |
tree | 9c4f736ed7b1d36356976061ebc7fa93703723c8 /src/widget.rs | |
parent | 4052ccf2b52acda99c6186e3494a582579ce62bb (diff) | |
parent | a38bf092a88a2d59a11d7bc428c7c242840d7d6d (diff) | |
download | iced-99fc717b7c268abe49b1000d9f111b12562aafcf.tar.gz iced-99fc717b7c268abe49b1000d9f111b12562aafcf.tar.bz2 iced-99fc717b7c268abe49b1000d9f111b12562aafcf.zip |
Merge pull request #1804 from tarkah/fix/scroll-to-imports
Export scroll_to helper
Diffstat (limited to 'src/widget.rs')
-rw-r--r-- | src/widget.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/widget.rs b/src/widget.rs index 38995a45..1163904d 100644 --- a/src/widget.rs +++ b/src/widget.rs @@ -109,8 +109,8 @@ pub mod radio { pub mod scrollable { //! Navigate an endless amount of content with a scrollbar. pub use iced_native::widget::scrollable::{ - snap_to, style::Scrollbar, style::Scroller, AbsoluteOffset, Id, - Properties, RelativeOffset, StyleSheet, Viewport, + scroll_to, snap_to, style::Scrollbar, style::Scroller, AbsoluteOffset, + Id, Properties, RelativeOffset, StyleSheet, Viewport, }; /// A widget that can vertically display an infinite amount of content |