crates/search2/src/project_search.rs 🔗
@@ -324,7 +324,10 @@ impl EventEmitter<ViewEvent> for ProjectSearchView {}
impl Render for ProjectSearchView {
type Element = Div;
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 {