diff options
author | 2024-03-08 18:57:44 +0100 | |
---|---|---|
committer | 2024-03-08 18:57:44 +0100 | |
commit | 34faedd32bda2a3d626c22dae180f9e253182139 (patch) | |
tree | 800dc455aa06483de5112e2ed08d0339deaeccf9 /examples/toast | |
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/toast')
-rw-r--r-- | examples/toast/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/toast/src/main.rs b/examples/toast/src/main.rs index 49626710..5a07da3e 100644 --- a/examples/toast/src/main.rs +++ b/examples/toast/src/main.rs @@ -271,7 +271,7 @@ mod toast { container(text(toast.body.as_str())) .width(Length::Fill) .padding(5) - .style(container::box_), + .style(container::rounded_box), ]) .max_width(200) .into() |