Restore auto-save on focus change, re-enable workspace tests

This commit is contained in:
Max Brunsfeld 2023-11-30 14:44:26 -08:00
parent c63ca09eed
commit a003a91212
13 changed files with 1350 additions and 1304 deletions

View file

@ -158,6 +158,11 @@ pub(crate) trait PlatformWindow {
fn draw(&self, scene: Scene);
fn sprite_atlas(&self) -> Arc<dyn PlatformAtlas>;
#[cfg(any(test, feature = "test-support"))]
fn as_test(&self) -> Option<&TestWindow> {
None
}
}
pub trait PlatformDispatcher: Send + Sync {