diff --git a/crates/warpui_core/src/core/window.rs b/crates/warpui_core/src/core/window.rs index b1824b9df3..e8e5fee415 100644 --- a/crates/warpui_core/src/core/window.rs +++ b/crates/warpui_core/src/core/window.rs @@ -128,6 +128,14 @@ impl StoredView { } } + pub fn child_view_ids(&self, app: &AppContext) -> Vec { + match self { + StoredView::Gui(view) => view.child_view_ids(app), + #[cfg(feature = "tui")] + StoredView::Tui(_) => Vec::new(), + } + } + pub fn active_cursor_position( &self, app: &mut AppContext,