Change summary
crates/workspace/src/shared_screen.rs | 16 ++++++++++------
1 file changed, 10 insertions(+), 6 deletions(-)
Detailed changes
@@ -66,12 +66,16 @@ impl FocusableView for SharedScreen {
}
}
impl Render for SharedScreen {
- fn render(&mut self, _: &mut ViewContext<Self>) -> impl IntoElement {
- div().track_focus(&self.focus).size_full().children(
- self.frame
- .as_ref()
- .map(|frame| img(frame.image()).size_full()),
- )
+ fn render(&mut self, cx: &mut ViewContext<Self>) -> impl IntoElement {
+ div()
+ .bg(cx.theme().colors().editor_background)
+ .track_focus(&self.focus)
+ .size_full()
+ .children(
+ self.frame
+ .as_ref()
+ .map(|frame| img(frame.image()).size_full()),
+ )
}
}