Preserve panel size when re-docking between left and right

This commit is contained in:
Nathan Sobo 2023-05-12 15:15:11 -06:00
parent 214354b4da
commit bd795d7607
6 changed files with 117 additions and 41 deletions

View file

@ -196,12 +196,7 @@ pub trait Element<V: View>: 'static {
where
Self: 'static + Sized,
{
Resizable::new(
self.into_any(),
side,
size,
on_resize
)
Resizable::new(self.into_any(), side, size, on_resize)
}
}