Add a min width for the ChatPanel

Co-Authored-By: Nathan Sobo <nathan@zed.dev>
This commit is contained in:
Antonio Scandurra 2021-09-03 17:56:07 +02:00
parent f0775aeebc
commit e9d50159ee

View file

@ -313,6 +313,7 @@ impl View for ChatPanel {
fn render(&mut self, _: &mut RenderContext<Self>) -> ElementBox {
let theme = &self.settings.borrow().theme;
ConstrainedBox::new(
Container::new(
Flex::column()
.with_child(
@ -325,6 +326,9 @@ impl View for ChatPanel {
.boxed(),
)
.with_style(&theme.chat_panel.container)
.boxed(),
)
.with_min_width(150.)
.boxed()
}