| 424 | } |
| 425 | |
| 426 | void TuningCanvas::OnMouseLeftWindow(wxMouseEvent& event) { |
| 427 | InteractiveCanvas::OnMouseLeftWindow(event); |
| 428 | SetCursor(wxCURSOR_CROSS); |
| 429 | hoverIndex = 0; |
| 430 | hoverState = TUNING_HOVER_NONE; |
| 431 | wxGetApp().getDemodMgr().setActiveDemodulator(nullptr); |
| 432 | |
| 433 | if (currentPPM != lastPPM) { |
| 434 | wxGetApp().saveConfig(); |
| 435 | } |
| 436 | Refresh(); |
| 437 | } |
| 438 | |
| 439 | void TuningCanvas::OnMouseEnterWindow(wxMouseEvent& event) { |
| 440 | InteractiveCanvas::mouseTracker.OnMouseEnterWindow(event); |
nothing calls this directly
no test coverage detected