This commit is contained in:
Max Brunsfeld 2021-08-25 15:22:14 -07:00
parent 8f86fa1ccd
commit b923f65a63
8 changed files with 114 additions and 21 deletions

View file

@ -958,7 +958,7 @@ impl View for Workspace {
if let Some(panel) = self.left_sidebar.active_item() {
content.add_child(
ConstrainedBox::new(ChildView::new(panel.id()).boxed())
.with_width(200.0)
.with_width(300.0)
.named("left panel"),
);
}
@ -966,7 +966,7 @@ impl View for Workspace {
if let Some(panel) = self.right_sidebar.active_item() {
content.add_child(
ConstrainedBox::new(ChildView::new(panel.id()).boxed())
.with_width(200.0)
.with_width(300.0)
.named("right panel"),
);
}