Skip to content

Commit

Permalink
Merge pull request #2062 from akshayr-mecha/master
Browse files Browse the repository at this point in the history
fix(examples-styling): fixed checkbox and toggler getting hidden behind scrollbar
  • Loading branch information
hecrj authored Sep 3, 2023
2 parents 982ea57 + 89d3191 commit 404f497
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- Updated `wgpu` to `0.17`. [#2065](https://github.com/iced-rs/iced/pull/2065)

### Fixed
- Missing `width` attribute in `styling` example. [#2062](https://github.com/iced-rs/iced/pull/2062)

Many thanks to...

- Add your <name> here
- @akshayr-mecha

## [0.10.0] - 2023-07-28
### Added
Expand Down
1 change: 1 addition & 0 deletions examples/styling/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit 404f497

Please sign in to comment.