| 857 | } |
| 858 | |
| 859 | void WaterfallCanvas::OnMouseEnterWindow(wxMouseEvent& event) { |
| 860 | InteractiveCanvas::OnMouseEnterWindow(event); |
| 861 | SetCursor(wxCURSOR_CROSS); |
| 862 | #ifdef _WIN32 |
| 863 | if (wxGetApp().getAppFrame()->canFocus()) { |
| 864 | this->SetFocus(); |
| 865 | } |
| 866 | #endif |
| 867 | } |
| 868 | |
| 869 | void WaterfallCanvas::OnMouseRightDown(wxMouseEvent& event) { |
| 870 | InteractiveCanvas::OnMouseRightDown(event); |
nothing calls this directly
no test coverage detected