(&mut self, direction: PanDirection, fraction: f64)
| 892 | *publish_hover_pick = Some(HoverPickEvent::ClearPick); |
| 893 | false |
| 894 | } |
| 895 | } |
| 896 | } |
| 897 | |
| 898 | fn pick_highlighted_point( |
| 899 | &mut self, |
| 900 | widget: &PlotWidget, |
| 901 | publish_hover_pick: &mut Option<HoverPickEvent>, |
| 902 | ) { |
| 903 | if !self.pick_enabled || self.pan.active || self.selection.active { |
| 904 | return; |
| 905 | } |
| 906 | |
| 907 | let picked = if let Some(HoverPickEvent::Hover(point_id)) = *publish_hover_pick { |
| 908 | Some(point_id) |
no test coverage detected