| 2281 | } |
| 2282 | |
| 2283 | void CFamiTrackerView::OnKeyInsert() |
| 2284 | { |
| 2285 | // Insert row |
| 2286 | if (PreventRepeat(VK_INSERT, true) || !m_bEditEnable) // // // |
| 2287 | return; |
| 2288 | |
| 2289 | if (m_pPatternEditor->IsSelecting()) |
| 2290 | AddAction(std::make_unique<CPActionInsertAtSel>()); // // // |
| 2291 | else |
| 2292 | AddAction(std::make_unique<CPActionInsertRow>()); |
| 2293 | } |
| 2294 | |
| 2295 | void CFamiTrackerView::OnKeyBackspace() |
| 2296 | { |
nothing calls this directly
no test coverage detected