Render multibuffer

This commit is contained in:
Piotr Osiewicz 2023-12-07 17:48:53 +01:00
parent ed5c05b272
commit e9c40963ab

View file

@ -324,7 +324,10 @@ impl EventEmitter<ViewEvent> for ProjectSearchView {}
impl Render for ProjectSearchView { impl Render for ProjectSearchView {
type Element = Div; type Element = Div;
fn render(&mut self, cx: &mut ViewContext<Self>) -> Self::Element { fn render(&mut self, cx: &mut ViewContext<Self>) -> Self::Element {
div().child(self.results_editor.clone()) div()
.flex_1()
.size_full()
.child(self.results_editor.clone())
} }
} }
// impl Entity for ProjectSearchView { // impl Entity for ProjectSearchView {