Suppress MsgBox when Wizard is running in silent mode (#76215)

* Suppress MsgBox when Wizard running in silent mode

* Suppress MsgBox when Wizard running in silent mode
This commit is contained in:
Raul Piraces Alastuey
2019-06-27 10:26:55 +02:00
committed by João Moreno
parent b726573844
commit 90d25d0835

View File

@@ -1034,7 +1034,7 @@ begin
AltArch := '32';
end;
if not Result then begin
if not Result and not WizardSilent() then begin
MsgBox('Please uninstall the ' + AltArch + '-bit version of {#NameShort} before installing this ' + ThisArch + '-bit version.', mbInformation, MB_OK);
end;
end;