diff options
author | 2021-08-26 14:41:33 +0700 | |
---|---|---|
committer | 2021-08-26 14:41:33 +0700 | |
commit | 7614127d3641cf3224798c2f0ff07b6ae57d9a53 (patch) | |
tree | 413fc3a6f7a22bfaf00de05dfcc9acf5b40bdd26 /core/src/lib.rs | |
parent | aa63841e2c80ca8130adf41d25e5d731409b92f4 (diff) | |
download | iced-7614127d3641cf3224798c2f0ff07b6ae57d9a53.tar.gz iced-7614127d3641cf3224798c2f0ff07b6ae57d9a53.tar.bz2 iced-7614127d3641cf3224798c2f0ff07b6ae57d9a53.zip |
Rename `HitTestResult` to `Hit`
... and also move it to a new `text` module in `iced_core`
Diffstat (limited to 'core/src/lib.rs')
-rw-r--r-- | core/src/lib.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/core/src/lib.rs b/core/src/lib.rs index 7c4c3c0c..a0decdab 100644 --- a/core/src/lib.rs +++ b/core/src/lib.rs @@ -17,12 +17,12 @@ pub mod keyboard; pub mod menu; pub mod mouse; +pub mod text; mod align; mod background; mod color; mod font; -mod hit_test; mod length; mod padding; mod point; @@ -34,7 +34,6 @@ pub use align::{Align, HorizontalAlignment, VerticalAlignment}; pub use background::Background; pub use color::Color; pub use font::Font; -pub use hit_test::HitTestResult; pub use length::Length; pub use menu::Menu; pub use padding::Padding; |