| 1647 | } |
| 1648 | |
| 1649 | void CMainFrame::OnUpdateModuleMoveframedown(CCmdUI *pCmdUI) |
| 1650 | { |
| 1651 | const CFamiTrackerDoc &Doc = GetDoc(); |
| 1652 | |
| 1653 | if (!Doc.IsFileLoaded()) |
| 1654 | return; |
| 1655 | |
| 1656 | pCmdUI->Enable(!(GetTrackerView()->GetSelectedFrame() == (GetCurrentSong()->GetFrameCount() - 1))); // // // |
| 1657 | } |
| 1658 | |
| 1659 | void CMainFrame::OnUpdateModuleMoveframeup(CCmdUI *pCmdUI) |
| 1660 | { |
nothing calls this directly
no test coverage detected