(widget: &PlotWidget)
| 1378 | bounds, |
| 1379 | |pid| widget.valid_point_id(pid), |
| 1380 | ) { |
| 1381 | picking::HoverRequest::CpuHit(point) => { |
| 1382 | effects.hover_pick = Some(HoverPickEvent::Hover(point)); |
| 1383 | } |
| 1384 | picking::HoverRequest::CpuMiss => { |
| 1385 | clear_hover_effect(widget, state, effects); |
| 1386 | } |
| 1387 | picking::HoverRequest::RequestedGpu => { |
| 1388 | // Keep drawing until the result arrives. |
| 1389 | effects.needs_redraw = true; |