WIP: start removing draw as it won't work with the two passes
This commit is contained in:
parent
98374a70d3
commit
28e795f2fd
10 changed files with 62 additions and 78 deletions
|
@ -210,6 +210,27 @@ impl<M: ManagedView> Element for PopoverMenu<M> {
|
|||
})
|
||||
}
|
||||
|
||||
fn commit_bounds(
|
||||
&mut self,
|
||||
bounds: Bounds<Pixels>,
|
||||
frame_state: &mut Self::FrameState,
|
||||
cx: &mut ElementContext,
|
||||
) {
|
||||
self.with_element_state(cx, |_this, element_state, cx| {
|
||||
if let Some(child) = frame_state.child_element.as_mut() {
|
||||
child.commit_bounds(cx);
|
||||
}
|
||||
|
||||
if let Some(child_layout_id) = frame_state.child_layout_id.as_ref() {
|
||||
element_state.child_bounds = Some(cx.layout_bounds(*child_layout_id));
|
||||
}
|
||||
|
||||
if let Some(menu) = frame_state.menu_element.as_mut() {
|
||||
menu.commit_bounds(cx);
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
fn paint(
|
||||
&mut self,
|
||||
_: Bounds<gpui::Pixels>,
|
||||
|
@ -221,10 +242,6 @@ impl<M: ManagedView> Element for PopoverMenu<M> {
|
|||
child.paint(cx);
|
||||
}
|
||||
|
||||
if let Some(child_layout_id) = frame_state.child_layout_id.take() {
|
||||
element_state.child_bounds = Some(cx.layout_bounds(child_layout_id));
|
||||
}
|
||||
|
||||
if let Some(mut menu) = frame_state.menu_element.take() {
|
||||
menu.paint(cx);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue