Compiling

This commit is contained in:
Nathan Sobo 2023-08-17 18:37:54 -06:00
parent 24d19deb0b
commit 19ccb19c96
2 changed files with 16 additions and 13 deletions

View File

@ -524,6 +524,21 @@ impl<V: 'static> AnyElement<V> {
from_element: element_layout.as_mut(),
};
let fill_color = self
.element
.style_mut()
.fill
.as_ref()
.and_then(Fill::color)
.map(Into::into);
cx.scene.push_quad(gpui::scene::Quad {
bounds: layout.from_engine.bounds,
background: fill_color,
border: Default::default(),
corner_radii: Default::default(),
});
for event_handler in self.element.handlers_mut().iter().cloned() {
let EngineLayout { order, bounds } = layout.from_engine;

View File

@ -2,7 +2,7 @@ use crate::{
element::{
AnyElement, Element, EventHandler, IntoElement, Layout, LayoutContext, NodeId, PaintContext,
},
style::{ElementStyle, Fill},
style::ElementStyle,
};
use anyhow::{anyhow, Result};
use gpui::LayoutNodeId;
@ -56,18 +56,6 @@ impl<V: 'static> Element<V> for Frame<V> {
}
fn paint(&mut self, layout: Layout<()>, view: &mut V, cx: &mut PaintContext<V>) -> Result<()> {
cx.scene.push_quad(gpui::scene::Quad {
bounds: layout.from_engine.bounds,
background: self
.style
.fill
.as_ref()
.and_then(Fill::color)
.map(Into::into),
border: Default::default(),
corner_radii: Default::default(),
});
for child in &mut self.children {
child.paint(view, cx)?;
}