Implemented automatically saved settings for exporting mods. Signed-off-by: Finlay <fireeaglefin@gmail.com>

This commit is contained in:
Finlay 2026-06-01 23:58:02 -07:00
parent bf8d1ca1f8
commit 34447863e2
5 changed files with 79 additions and 5 deletions

View file

@ -369,7 +369,7 @@ void ModFolderPage::exportModMetadata()
}
std::ranges::sort(selectedMods, [](const Mod* a, const Mod* b) { return a->name() < b->name(); });
ExportToModListDialog dlg(m_instance->name(), selectedMods, this);
ExportToModListDialog dlg(m_instance->name(), selectedMods, m_instance, this);
dlg.exec();
}