Replace Inconsolata with Zed Mono and Zed Sans

This commit is contained in:
Antonio Scandurra 2022-02-18 14:55:11 +01:00
parent 98bedbd4cf
commit 38e4ec9157
17 changed files with 38 additions and 21 deletions

View file

@ -283,6 +283,10 @@ impl App {
Ok(app)
}
pub fn background(&self) -> Arc<executor::Background> {
self.0.borrow().background().clone()
}
pub fn on_become_active<F>(self, mut callback: F) -> Self
where
F: 'static + FnMut(&mut MutableAppContext),