Screenshare item background is now of editor background's color

This commit is contained in:
Kirill Bulatov 2024-01-06 02:01:12 +02:00
parent e549ef0ee9
commit 669293e749

View File

@ -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()),
)
}
}