()
| 13 | }; |
| 14 | |
| 15 | fn main() -> iced::Result { |
| 16 | iced::application(new, update, view) |
| 17 | .font(include_bytes!("fonts/FiraCodeNerdFont-Regular.ttf")) |
| 18 | .default_font(iced::Font::with_name("FiraCode Nerd Font")) |
| 19 | .run() |
| 20 | } |
| 21 | |
| 22 | fn update(widget: &mut PlotWidget, message: PlotUiMessage) { |
| 23 | widget.update(message); |
nothing calls this directly
no outgoing calls
no test coverage detected