diff --git a/crates/gpui/src/element.rs b/crates/gpui/src/element.rs index a3fc6269f33d8726b55f8e8be4aadb52109a7606..5fa2f9ead8274452ac04795bf68dffc571f5dc31 100644 --- a/crates/gpui/src/element.rs +++ b/crates/gpui/src/element.rs @@ -741,7 +741,17 @@ impl Element for Empty { window: &mut Window, cx: &mut App, ) -> (LayoutId, Self::RequestLayoutState) { - (window.request_layout(Style::default(), None, cx), ()) + ( + window.request_layout( + Style { + display: crate::Display::None, + ..Default::default() + }, + None, + cx, + ), + (), + ) } fn prepaint(