diff options
author | 2020-03-10 02:57:13 +0100 | |
---|---|---|
committer | 2020-03-10 02:57:13 +0100 | |
commit | 6151c528241d0a6ece88e6e664df1b50f8174ecb (patch) | |
tree | 4771b9b362696c17f2fa0fbb980abc00cda46659 /native/src/widget.rs | |
parent | 15fad17f373c0aeb023a879f5e38440fdd944eca (diff) | |
download | iced-6151c528241d0a6ece88e6e664df1b50f8174ecb.tar.gz iced-6151c528241d0a6ece88e6e664df1b50f8174ecb.tar.bz2 iced-6151c528241d0a6ece88e6e664df1b50f8174ecb.zip |
Rename `Panes` widget to `PaneGrid`
Diffstat (limited to 'native/src/widget.rs')
-rw-r--r-- | native/src/widget.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/native/src/widget.rs b/native/src/widget.rs index d97e836c..88f819c9 100644 --- a/native/src/widget.rs +++ b/native/src/widget.rs @@ -25,7 +25,7 @@ pub mod checkbox; pub mod column; pub mod container; pub mod image; -pub mod panes; +pub mod pane_grid; pub mod progress_bar; pub mod radio; pub mod row; @@ -47,7 +47,7 @@ pub use container::Container; #[doc(no_inline)] pub use image::Image; #[doc(no_inline)] -pub use panes::Panes; +pub use pane_grid::PaneGrid; #[doc(no_inline)] pub use progress_bar::ProgressBar; #[doc(no_inline)] |