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

--HG--
branch : develop
feature/pipeline-tools
kervala 8 years ago
parent 5050a2bfa0
commit fb934818a7

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

Loading…
Cancel
Save