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:
parent
d06977ecbb
commit
42ea458ccf
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user