diff options
author | 2024-03-07 00:14:41 +0100 | |
---|---|---|
committer | 2024-03-07 00:14:41 +0100 | |
commit | 905f2160e6eb7504f52d9bd62c7bfa42c8ec2902 (patch) | |
tree | 9d5915ab355facbca08b6be3d7eac03c7b5d9acc /widget/src/scrollable.rs | |
parent | 7c4bf70023a8092faad9630c2c87fbf41bd6ab76 (diff) | |
download | iced-905f2160e6eb7504f52d9bd62c7bfa42c8ec2902.tar.gz iced-905f2160e6eb7504f52d9bd62c7bfa42c8ec2902.tar.bz2 iced-905f2160e6eb7504f52d9bd62c7bfa42c8ec2902.zip |
Move `Theme` type to `iced_core`
Diffstat (limited to 'widget/src/scrollable.rs')
-rw-r--r-- | widget/src/scrollable.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/widget/src/scrollable.rs b/widget/src/scrollable.rs index 19a80ee2..861f1bfb 100644 --- a/widget/src/scrollable.rs +++ b/widget/src/scrollable.rs @@ -13,10 +13,9 @@ use crate::core::widget::operation::{self, Operation}; use crate::core::widget::tree::{self, Tree}; use crate::core::{ Background, Border, Clipboard, Color, Element, Layout, Length, Pixels, - Point, Rectangle, Shell, Size, Vector, Widget, + Point, Rectangle, Shell, Size, Theme, Vector, Widget, }; use crate::runtime::Command; -use crate::style::Theme; pub use operation::scrollable::{AbsoluteOffset, RelativeOffset}; |