(
ctx: &egui::Context,
state: &AppStateRef,
show: &mut bool,
config_state: &mut ConfigViewState,
appearance: &Appearance,
)
| 545 | } |
| 546 | |
| 547 | pub fn project_window( |
| 548 | ctx: &egui::Context, |
| 549 | state: &AppStateRef, |
| 550 | show: &mut bool, |
| 551 | config_state: &mut ConfigViewState, |
| 552 | appearance: &Appearance, |
| 553 | ) { |
| 554 | let mut state_guard = state.write().unwrap(); |
| 555 | |
| 556 | egui::Window::new("Project").open(show).show(ctx, |ui| { |
| 557 | split_obj_config_ui(ui, &mut state_guard, config_state, appearance); |
| 558 | }); |
| 559 | } |
| 560 | |
| 561 | fn split_obj_config_ui( |
| 562 | ui: &mut egui::Ui, |
no test coverage detected