Checkpoint

This commit is contained in:
Nathan Sobo 2023-10-05 00:13:17 -06:00
parent 1c70ca2214
commit ed20397a2b
3 changed files with 10 additions and 4 deletions

View file

@ -67,6 +67,12 @@ impl AsyncWindowContext {
pub fn update<R>(&self, update: impl FnOnce(&mut WindowContext) -> R) -> Result<R> {
self.app.update_window(self.window, update)
}
pub fn on_next_frame(&mut self, f: impl FnOnce(&mut WindowContext) + Send + 'static) {
self.app
.update_window(self.window, |cx| cx.on_next_frame(f))
.ok();
}
}
impl Context for AsyncWindowContext {