(ctx: &egui::Context)
| 26 | } |
| 27 | |
| 28 | pub fn egui_waker(ctx: &egui::Context) -> Waker { Waker::from(Arc::new(EguiWaker(ctx.clone()))) } |
| 29 | |
| 30 | pub fn is_create_scratch_available(config: &AppConfig) -> bool { |
| 31 | let Some(selected_obj) = &config.selected_obj else { |
no test coverage detected