diff options
| author | 2023-09-03 08:55:10 +0200 | |
|---|---|---|
| committer | 2023-09-03 08:55:10 +0200 | |
| commit | 404f4974a31b57469d70b4a94c99c2d4ec0600d2 (patch) | |
| tree | a9d8a0336ea6e79dce016a1666877fac56ae38e7 /examples/styling/src | |
| parent | 982ea578be1e0b934e75b41cb8d65d2ffe05558a (diff) | |
| parent | 89d31913db5d1e46b19b265bf48faccfc9869066 (diff) | |
| download | iced-404f4974a31b57469d70b4a94c99c2d4ec0600d2.tar.gz iced-404f4974a31b57469d70b4a94c99c2d4ec0600d2.tar.bz2 iced-404f4974a31b57469d70b4a94c99c2d4ec0600d2.zip  | |
Merge pull request #2062 from akshayr-mecha/master
fix(examples-styling): fixed checkbox and toggler getting hidden behind scrollbar
Diffstat (limited to 'examples/styling/src')
| -rw-r--r-- | examples/styling/src/main.rs | 1 | 
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/styling/src/main.rs b/examples/styling/src/main.rs index f8a4c80a..51538ec2 100644 --- a/examples/styling/src/main.rs +++ b/examples/styling/src/main.rs @@ -108,6 +108,7 @@ impl Sandbox for Styling {              column!["Scroll me!", vertical_space(800), "You did it!"]                  .width(Length::Fill),          ) +        .width(Length::Fill)          .height(100);          let checkbox = checkbox(  | 
