feat: display mod dependencies

Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
This commit is contained in:
Trial97 2025-06-28 23:50:54 +03:00
parent 66f0f95fd7
commit 947656df0f
No known key found for this signature in database
GPG key ID: 55EF5DA53DB36318
6 changed files with 256 additions and 136 deletions

View file

@ -122,7 +122,7 @@ void ModFolderPage::updateFrame(const QModelIndex& current, [[maybe_unused]] con
auto sourceCurrent = m_filterModel->mapToSource(current);
int row = sourceCurrent.row();
const Mod& mod = m_model->at(row);
ui->frame->updateWithMod(mod);
ui->frame->updateWithMod(mod, m_model->requiresList(mod.mod_id()), m_model->requiredByList(mod.mod_id()));
}
void ModFolderPage::removeItems(const QItemSelection& selection)