Return Result from AsyncAppContext::update_view

This commit is contained in:
Antonio Scandurra 2023-04-18 12:03:53 +02:00
parent 493a418c91
commit 31e6bb4fc1
4 changed files with 62 additions and 56 deletions

View file

@ -210,9 +210,9 @@ impl ContextMenu {
cx.notify();
cx.spawn(|this, mut cx| async move {
cx.background().timer(Duration::from_millis(50)).await;
this.update(&mut cx, |this, cx| this.cancel(&Default::default(), cx));
this.update(&mut cx, |this, cx| this.cancel(&Default::default(), cx))
})
.detach();
.detach_and_log_err(cx);
}
}
}