Take &mut self in View::render

Co-Authored-By: Nathan Sobo <nathan@zed.dev>
This commit is contained in:
Antonio Scandurra
2021-08-30 17:51:26 +02:00
co-authored by Nathan Sobo
parent 917a80ec36
commit ef89ceae4d
11 changed files with 28 additions and 28 deletions
+1 -1
View File
@@ -1776,7 +1776,7 @@ mod tests {
"empty view"
}
fn render(&self, _: &mut gpui::RenderContext<Self>) -> gpui::ElementBox {
fn render(&mut self, _: &mut gpui::RenderContext<Self>) -> gpui::ElementBox {
gpui::Element::boxed(gpui::elements::Empty)
}
}