diff options
author | 2020-03-19 09:37:13 +0100 | |
---|---|---|
committer | 2020-03-19 09:37:13 +0100 | |
commit | bb898fa2e277d46642feec397efd753f133a0aae (patch) | |
tree | c12dfe5f8b5e282297ce8ea1b783d5ae176dc574 /wgpu/src/widget.rs | |
parent | bd74c4e577de01b48064c7a01541ca2ad6d9ae16 (diff) | |
download | iced-bb898fa2e277d46642feec397efd753f133a0aae.tar.gz iced-bb898fa2e277d46642feec397efd753f133a0aae.tar.bz2 iced-bb898fa2e277d46642feec397efd753f133a0aae.zip |
Create `PaneGrid` alias in `iced_wgpu`
Diffstat (limited to 'wgpu/src/widget.rs')
-rw-r--r-- | wgpu/src/widget.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/wgpu/src/widget.rs b/wgpu/src/widget.rs index 73cce7e2..b39f2d91 100644 --- a/wgpu/src/widget.rs +++ b/wgpu/src/widget.rs @@ -10,6 +10,7 @@ pub mod button; pub mod checkbox; pub mod container; +pub mod pane_grid; pub mod progress_bar; pub mod radio; pub mod scrollable; @@ -23,6 +24,8 @@ pub use checkbox::Checkbox; #[doc(no_inline)] pub use container::Container; #[doc(no_inline)] +pub use pane_grid::PaneGrid; +#[doc(no_inline)] pub use progress_bar::ProgressBar; #[doc(no_inline)] pub use radio::Radio; |