diff --git a/crates/workspace/src/shared_screen.rs b/crates/workspace/src/shared_screen.rs index dbbe7de6a1..edfabed60d 100644 --- a/crates/workspace/src/shared_screen.rs +++ b/crates/workspace/src/shared_screen.rs @@ -66,12 +66,16 @@ impl FocusableView for SharedScreen { } } impl Render for SharedScreen { - fn render(&mut self, _: &mut ViewContext) -> 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) -> 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()), + ) } }