(&mut self, ctx: &egui::Context, _frame: &mut eframe::Frame)
| 48 | |
| 49 | impl eframe::App for DevfilerUi { |
| 50 | fn update(&mut self, ctx: &egui::Context, _frame: &mut eframe::Frame) { |
| 51 | self.draw_main_window(ctx); |
| 52 | |
| 53 | if self.show_add_data_window { |
| 54 | self.draw_add_data_window(ctx); |
| 55 | } |
| 56 | } |
| 57 | } |
| 58 | |
| 59 | impl DevfilerUi { |
no test coverage detected