Fixed: Only ask once if user want to uninstall Ryzom, see #279

This commit is contained in:
kervala 2016-09-14 08:13:20 +02:00
parent 9005900529
commit 0ca017096f

View file

@ -793,9 +793,14 @@ void COperationDialog::uninstallOldClient()
if (button == QMessageBox::Yes)
{
// remember the choice
CConfigFile::getInstance()->setShouldUninstallOldClient(true);
// launch old uninstaller
QDesktopServices::openUrl(QUrl::fromLocalFile(uninstaller));
// to not ask twice
CConfigFile::getInstance()->setUninstallingOldClient(true);
}
else
{