| 1435 | } |
| 1436 | |
| 1437 | void CMainFrame::OnTrackerSetMarker() // // // 050B |
| 1438 | { |
| 1439 | auto *pView = GetTrackerView(); |
| 1440 | int Frame = pView->GetSelectedFrame(); |
| 1441 | int Row = pView->GetSelectedRow(); |
| 1442 | |
| 1443 | if (Frame == pView->GetMarkerFrame() && Row == pView->GetMarkerRow()) |
| 1444 | pView->SetMarker(-1, -1); |
| 1445 | else |
| 1446 | pView->SetMarker(Frame, Row); |
| 1447 | } |
| 1448 | |
| 1449 | void CMainFrame::OnTrackerTogglePlay() |
| 1450 | { |
nothing calls this directly
no test coverage detected