Skip to content

Commit 90d25d0

Browse files
piracesjoaomoreno
authored andcommitted
Suppress MsgBox when Wizard is running in silent mode (microsoft#76215)
* Suppress MsgBox when Wizard running in silent mode * Suppress MsgBox when Wizard running in silent mode
1 parent b726573 commit 90d25d0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

build/win32/code.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1034,7 +1034,7 @@ begin
10341034
AltArch := '32';
10351035
end;
10361036
1037-
if not Result then begin
1037+
if not Result and not WizardSilent() then begin
10381038
MsgBox('Please uninstall the ' + AltArch + '-bit version of {#NameShort} before installing this ' + ThisArch + '-bit version.', mbInformation, MB_OK);
10391039
end;
10401040
end;

0 commit comments

Comments
 (0)