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