Screenshare item background is now of editor background's color
This commit is contained in:
parent
e549ef0ee9
commit
669293e749
1 changed files with 10 additions and 6 deletions
|
@ -66,8 +66,12 @@ impl FocusableView for SharedScreen {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
impl Render for SharedScreen {
|
impl Render for SharedScreen {
|
||||||
fn render(&mut self, _: &mut ViewContext<Self>) -> impl IntoElement {
|
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl IntoElement {
|
||||||
div().track_focus(&self.focus).size_full().children(
|
div()
|
||||||
|
.bg(cx.theme().colors().editor_background)
|
||||||
|
.track_focus(&self.focus)
|
||||||
|
.size_full()
|
||||||
|
.children(
|
||||||
self.frame
|
self.frame
|
||||||
.as_ref()
|
.as_ref()
|
||||||
.map(|frame| img(frame.image()).size_full()),
|
.map(|frame| img(frame.image()).size_full()),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue