diff options
author | 2025-02-11 22:58:51 +0100 | |
---|---|---|
committer | 2025-02-11 22:59:28 +0100 | |
commit | bf205a88b66a6fa8ea6d9a259bfd0ed0b42a97b7 (patch) | |
tree | 91c64baa4054b3c4fac9b29cd051003f21eae7cf | |
parent | 718d36972d7aaa44a323daf10f24294072c354b6 (diff) | |
download | iced-bf205a88b66a6fa8ea6d9a259bfd0ed0b42a97b7.tar.gz iced-bf205a88b66a6fa8ea6d9a259bfd0ed0b42a97b7.tar.bz2 iced-bf205a88b66a6fa8ea6d9a259bfd0ed0b42a97b7.zip |
Make `row` module public
-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 b8cfa98f..31dcc205 100644 --- a/widget/src/lib.rs +++ b/widget/src/lib.rs @@ -12,7 +12,6 @@ mod action; mod column; mod mouse_area; mod pin; -mod row; mod space; mod stack; mod themer; @@ -28,6 +27,7 @@ pub mod pick_list; pub mod pop; pub mod progress_bar; pub mod radio; +pub mod row; pub mod rule; pub mod scrollable; pub mod slider; |