diff options
author | 2024-08-24 01:58:53 +0200 | |
---|---|---|
committer | 2024-08-24 01:58:53 +0200 | |
commit | 84e766fd0022783f36f02c99b150a79753e74791 (patch) | |
tree | 710ab595a6bf9fd18d7d42ece01a0346e780ebec /widget/src/pane_grid.rs | |
parent | bb6fa4292433c015cb5b69a2c4f7d7f0b92339c6 (diff) | |
parent | 3a434c9505bcc1a9ce71db1d69f77c3374b076cb (diff) | |
download | iced-84e766fd0022783f36f02c99b150a79753e74791.tar.gz iced-84e766fd0022783f36f02c99b150a79753e74791.tar.bz2 iced-84e766fd0022783f36f02c99b150a79753e74791.zip |
Merge pull request #2555 from mtkennerly/feature/pane-grid-compact-controls
Add compact variant for pane grid controls
Diffstat (limited to 'widget/src/pane_grid.rs')
-rw-r--r-- | widget/src/pane_grid.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/widget/src/pane_grid.rs b/widget/src/pane_grid.rs index 0aab1ab5..710a5443 100644 --- a/widget/src/pane_grid.rs +++ b/widget/src/pane_grid.rs @@ -10,6 +10,7 @@ mod axis; mod configuration; mod content; +mod controls; mod direction; mod draggable; mod node; @@ -22,6 +23,7 @@ pub mod state; pub use axis::Axis; pub use configuration::Configuration; pub use content::Content; +pub use controls::Controls; pub use direction::Direction; pub use draggable::Draggable; pub use node::Node; |