Checkpoint
This commit is contained in:
parent
1c70ca2214
commit
ed20397a2b
3 changed files with 10 additions and 4 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue