Get the drag event from the render update.
(&self)
| 31 | |
| 32 | /// Get the drag event from the render update. |
| 33 | pub fn get_drag_event(&self) -> Option<DragEvent> { |
| 34 | if let PlotUiMessage::RenderUpdate(update) = self { |
| 35 | update.drag_event |
| 36 | } else { |
| 37 | None |
| 38 | } |
| 39 | } |
| 40 | } |
| 41 | |
| 42 | /// Context passed to hover/pick highlight callbacks. |
nothing calls this directly
no outgoing calls
no test coverage detected