fix(context_drawer): remove scrollable
This commit is contained in:
parent
5fdc2df9cd
commit
8c69491f2a
1 changed files with 2 additions and 1 deletions
|
|
@ -54,7 +54,8 @@ impl<'a, Message: Clone + 'static> ContextDrawer<'a, Message> {
|
|||
);
|
||||
|
||||
let pane = column::with_capacity(2).push(header).push(
|
||||
scrollable(container(drawer.into()).padding([0, space_l, space_l, space_l]))
|
||||
container(drawer.into())
|
||||
.padding([0, space_l, space_l, space_l])
|
||||
.height(Length::Fill)
|
||||
.width(Length::Shrink),
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue