diff options
author | 2024-03-08 13:34:36 +0100 | |
---|---|---|
committer | 2024-03-08 13:34:36 +0100 | |
commit | 288025f5143f4e3f8bc5af36e86f7afa7f07a4c7 (patch) | |
tree | e187f94cc74915f686a4b7cefd0984f4de6eae83 /widget/src/lib.rs | |
parent | 7161cb40c7a9fbda84ee61060a109b93416b2ea0 (diff) | |
download | iced-288025f5143f4e3f8bc5af36e86f7afa7f07a4c7.tar.gz iced-288025f5143f4e3f8bc5af36e86f7afa7f07a4c7.tar.bz2 iced-288025f5143f4e3f8bc5af36e86f7afa7f07a4c7.zip |
Inline helper functions in `widget` modules
Diffstat (limited to '')
-rw-r--r-- | widget/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/widget/src/lib.rs b/widget/src/lib.rs index 72596efc..209dfad9 100644 --- a/widget/src/lib.rs +++ b/widget/src/lib.rs @@ -18,6 +18,7 @@ pub use iced_runtime::core; mod column; mod mouse_area; mod row; +mod space; mod themer; pub mod button; @@ -33,7 +34,6 @@ pub mod radio; pub mod rule; pub mod scrollable; pub mod slider; -pub mod space; pub mod text; pub mod text_editor; pub mod text_input; |