| 118 | } |
| 119 | |
| 120 | void ModFolderPage::updateFrame(const QModelIndex& current, [[maybe_unused]] const QModelIndex& previous) |
| 121 | { |
| 122 | auto sourceCurrent = m_filterModel->mapToSource(current); |
| 123 | int row = sourceCurrent.row(); |
| 124 | const Mod& mod = m_model->at(row); |
| 125 | ui->frame->updateWithMod(mod); |
| 126 | } |
| 127 | |
| 128 | void ModFolderPage::removeItems(const QItemSelection& selection) |
| 129 | { |
nothing calls this directly
no test coverage detected