egui_graphs
egui_graphs copied to clipboard
unwrap panic when resizing an egui window over the top of a graph
unwrap occurs here in graph_view.rs:
if resp.drag_started() {
if let Some(idx) = self.g.node_by_screen_pos(meta, resp.hover_pos().unwrap()) {
self.set_drag_start(idx);
}
}
I can't reproduce it. I resized it in configurable example and everything was fine. Could you please specify the conditions under which panic happens?
Isn't #175 fixes it?