| 142 | } |
| 143 | |
| 144 | void ModFolderPage::removeItem() |
| 145 | { |
| 146 | |
| 147 | if (!m_controlsEnabled) |
| 148 | return; |
| 149 | |
| 150 | auto selection = m_filterModel->mapSelectionToSource(ui->treeView->selectionModel()->selection()); |
| 151 | m_model->deleteMods(selection.indexes()); |
| 152 | } |
| 153 | |
| 154 | void ModFolderPage::installMods() |
| 155 | { |
nothing calls this directly
no test coverage detected