diff --git a/crates/gpui/src/element.rs b/crates/gpui/src/element.rs index a3fc6269f3..5fa2f9ead8 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(