| 2130 | } |
| 2131 | |
| 2132 | void CMainFrame::OnModuleComments() |
| 2133 | { |
| 2134 | CCommentsDlg commentsDlg; |
| 2135 | const CFamiTrackerDoc &Doc = GetDoc(); |
| 2136 | commentsDlg.SetComment(Doc.GetModule()->GetComment()); // // // |
| 2137 | commentsDlg.SetShowOnLoad(Doc.GetModule()->ShowsCommentOnOpen()); |
| 2138 | if (commentsDlg.DoModal() == IDOK && commentsDlg.IsChanged()) |
| 2139 | AddAction(std::make_unique<ModuleAction::CComment>(commentsDlg.GetComment(), commentsDlg.GetShowOnLoad())); // // // |
| 2140 | } |
| 2141 | |
| 2142 | void CMainFrame::OnModuleGrooveSettings() // // // |
| 2143 | { |
nothing calls this directly
no test coverage detected