diff options
author | 2024-07-05 01:13:28 +0200 | |
---|---|---|
committer | 2024-07-05 01:13:28 +0200 | |
commit | 88611d7653e2a22c82c41f8d1a4732c2af60adcd (patch) | |
tree | 0aa1b73fc5163d58eee2b6c74f0566deeb7ce60c /widget/src/scrollable.rs | |
parent | 2b19471d1cfe4cf034b026aa6620b1685a5ab772 (diff) | |
download | iced-88611d7653e2a22c82c41f8d1a4732c2af60adcd.tar.gz iced-88611d7653e2a22c82c41f8d1a4732c2af60adcd.tar.bz2 iced-88611d7653e2a22c82c41f8d1a4732c2af60adcd.zip |
Hide internal `Task` constructors
Diffstat (limited to '')
-rw-r--r-- | widget/src/scrollable.rs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/widget/src/scrollable.rs b/widget/src/scrollable.rs index c3d08223..3ff1f8a1 100644 --- a/widget/src/scrollable.rs +++ b/widget/src/scrollable.rs @@ -15,7 +15,8 @@ use crate::core::{ self, Background, Border, Clipboard, Color, Element, Layout, Length, Pixels, Point, Rectangle, Shell, Size, Theme, Vector, Widget, }; -use crate::runtime::{Action, Task}; +use crate::runtime::task::{self, Task}; +use crate::runtime::Action; pub use operation::scrollable::{AbsoluteOffset, RelativeOffset}; @@ -955,13 +956,13 @@ impl From<Id> for widget::Id { /// Produces a [`Task`] that snaps the [`Scrollable`] with the given [`Id`] /// to the provided `percentage` along the x & y axis. pub fn snap_to<T>(id: Id, offset: RelativeOffset) -> Task<T> { - Task::effect(Action::widget(operation::scrollable::snap_to(id.0, offset))) + task::effect(Action::widget(operation::scrollable::snap_to(id.0, offset))) } /// Produces a [`Task`] that scrolls the [`Scrollable`] with the given [`Id`] /// to the provided [`AbsoluteOffset`] along the x & y axis. pub fn scroll_to<T>(id: Id, offset: AbsoluteOffset) -> Task<T> { - Task::effect(Action::widget(operation::scrollable::scroll_to( + task::effect(Action::widget(operation::scrollable::scroll_to( id.0, offset, ))) } |