Close remote project windows when leaving a call

This commit is contained in:
Max Brunsfeld 2023-03-15 15:19:27 -07:00
parent 385dfe1661
commit b34477458e
3 changed files with 11 additions and 0 deletions

View file

@ -598,6 +598,11 @@ impl Workspace {
cx.blur();
}
project::Event::Closed => {
let window_id = cx.window_id();
cx.remove_window(window_id);
}
_ => {}
}
cx.notify()