1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-04-02 22:05:43 +02:00

handle (un)installing Extra Resolutions mod

This commit is contained in:
Andrey Filipenkov 2022-09-27 11:52:09 +03:00
parent d06977ecbb
commit 42ea458ccf

View File

@ -300,6 +300,9 @@ bool CModManager::doInstallMod(QString modname, QString archivePath)
loadMods(); loadMods();
modList->reloadRepositories(); modList->reloadRepositories();
if(modname == extraResolutionsMod)
sendExtraResolutionsEnabledChanged(true);
return true; return true;
} }
@ -320,6 +323,9 @@ bool CModManager::doUninstallMod(QString modname)
loadMods(); loadMods();
modList->reloadRepositories(); modList->reloadRepositories();
if(modname == extraResolutionsMod)
sendExtraResolutionsEnabledChanged(false);
return true; return true;
} }