Mark TODOs and prep for merging main
This commit is contained in:
parent
e3ae7c4fe0
commit
3734a390b2
13 changed files with 77 additions and 15 deletions
|
@ -118,7 +118,11 @@ impl Platform for TestPlatform {
|
|||
}
|
||||
|
||||
fn text_system(&self) -> Arc<dyn PlatformTextSystem> {
|
||||
Arc::new(TestTextSystem {})
|
||||
#[cfg(target_os = "linux")]
|
||||
return Arc::new(TestTextSystem {});
|
||||
|
||||
#[cfg(target_os = "macos")]
|
||||
return Arc::new(crate::platform::mac::MacTextSystem::new());
|
||||
}
|
||||
|
||||
fn run(&self, _on_finish_launching: Box<dyn FnOnce()>) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue