| 371 | } |
| 372 | |
| 373 | void ModFolderPage::visitModPages() |
| 374 | { |
| 375 | auto selection = m_filterModel->mapSelectionToSource(ui->treeView->selectionModel()->selection()).indexes(); |
| 376 | for (auto mod : m_model->selectedMods(selection)) { |
| 377 | auto url = mod->metaurl(); |
| 378 | if (!url.isEmpty()) |
| 379 | DesktopServices::openUrl(url); |
| 380 | } |
| 381 | } |
| 382 | |
| 383 | void ModFolderPage::deleteModMetadata() |
| 384 | { |
nothing calls this directly
no test coverage detected