diff options
author | 2024-03-08 18:57:44 +0100 | |
---|---|---|
committer | 2024-03-08 18:57:44 +0100 | |
commit | 34faedd32bda2a3d626c22dae180f9e253182139 (patch) | |
tree | 800dc455aa06483de5112e2ed08d0339deaeccf9 /examples/visible_bounds | |
parent | 0a65fd0d74427e12fda18da39829754cb6aacbfa (diff) | |
download | iced-34faedd32bda2a3d626c22dae180f9e253182139.tar.gz iced-34faedd32bda2a3d626c22dae180f9e253182139.tar.bz2 iced-34faedd32bda2a3d626c22dae180f9e253182139.zip |
Rename `container::box_` to `rounded_box`
Diffstat (limited to 'examples/visible_bounds')
-rw-r--r-- | examples/visible_bounds/src/main.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/visible_bounds/src/main.rs b/examples/visible_bounds/src/main.rs index d7f5a81d..400d5753 100644 --- a/examples/visible_bounds/src/main.rs +++ b/examples/visible_bounds/src/main.rs @@ -132,7 +132,7 @@ impl Application for Example { container(text("I am the outer container!")) .id(OUTER_CONTAINER.clone()) .padding(40) - .style(container::box_), + .style(container::rounded_box), vertical_space().height(400), scrollable( column![ @@ -141,7 +141,7 @@ impl Application for Example { container(text("I am the inner container!")) .id(INNER_CONTAINER.clone()) .padding(40) - .style(container::box_), + .style(container::rounded_box), vertical_space().height(400), ] .padding(20) |