mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-27 12:54:42 +00:00
Fix crash when closing a window while in full-screen mode
This commit delays closing the native window to the next tick to avoid borrowing either `WindowState` or `MutableAppContext` twice.
This commit is contained in:
parent
d3904cd961
commit
06f9516d31
1 changed files with 9 additions and 3 deletions
|
@ -458,9 +458,15 @@ impl Window {
|
||||||
|
|
||||||
impl Drop for Window {
|
impl Drop for Window {
|
||||||
fn drop(&mut self) {
|
fn drop(&mut self) {
|
||||||
unsafe {
|
let this = self.0.borrow();
|
||||||
self.0.as_ref().borrow().native_window.close();
|
let window = this.native_window;
|
||||||
}
|
this.executor
|
||||||
|
.spawn(async move {
|
||||||
|
unsafe {
|
||||||
|
window.close();
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.detach();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue