| 292 | } |
| 293 | |
| 294 | void SpectrumCanvas::OnMouseRightDown(wxMouseEvent& event) { |
| 295 | SetCursor(wxCURSOR_SIZENS); |
| 296 | mouseTracker.setHorizDragLock(true); |
| 297 | mouseTracker.OnMouseRightDown(event); |
| 298 | scaleFactor = wxGetApp().getSpectrumProcessor()->getScaleFactor(); |
| 299 | } |
| 300 | |
| 301 | void SpectrumCanvas::OnMouseRightReleased(wxMouseEvent& event) { |
| 302 | SetCursor(wxCURSOR_CROSS); |
nothing calls this directly
no test coverage detected