Not working yet file-finder2

This commit is contained in:
Conrad Irwin 2023-11-14 09:28:18 -07:00
parent 6b366c102e
commit 7d94d8940c
7 changed files with 2247 additions and 2 deletions

View file

@ -3541,6 +3541,10 @@ impl Workspace {
div
}
pub fn current_modal<V: Modal + 'static>(&mut self, cx: &ViewContext<Self>) -> Option<View<V>> {
self.modal_layer.read(cx).current_modal()
}
pub fn toggle_modal<V: Modal, B>(&mut self, cx: &mut ViewContext<Self>, build: B)
where
B: FnOnce(&mut ViewContext<V>) -> V,