| 1487 | } |
| 1488 | |
| 1489 | void CMainFrame::OnBnClickedIncFrame() |
| 1490 | { |
| 1491 | if (GetTrackerView()->GetSelectedFrame() != GetFrameEditor()->GetEditFrame()) // // // |
| 1492 | return; |
| 1493 | int Add = (CheckRepeat() ? 4 : 1); |
| 1494 | if (ChangeAllPatterns()) |
| 1495 | AddAction(std::make_unique<CFActionChangePatternAll>(Add)); // // // |
| 1496 | else |
| 1497 | AddAction(std::make_unique<CFActionChangePattern>(Add)); |
| 1498 | } |
| 1499 | |
| 1500 | void CMainFrame::OnBnClickedDecFrame() |
| 1501 | { |
nothing calls this directly
no test coverage detected