Iced master merge (again)

This commit is contained in:
Bingus 2023-02-17 11:50:52 -08:00
parent 744cef5608
commit 2d427455ce
No known key found for this signature in database
GPG key ID: 5F84D2AA40A9F170
5 changed files with 34 additions and 12 deletions

View file

@ -441,7 +441,7 @@ impl Pane {
fn new(id: usize, axis: pane_grid::Axis) -> Self {
Self {
id,
scrollable_id: scrollable::Id::new(format!("{:?}", id)),
scrollable_id: scrollable::Id::unique(),
axis,
is_pinned: false,
is_moving: false,
@ -495,7 +495,7 @@ fn view_content<'a>(
controls,
]
.width(Length::Fill)
.height(Length::Units(800))
.height(800)
.spacing(10)
.align_items(Alignment::Center);