mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-25 11:08:51 +01:00
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:
committed by
João Moreno
parent
b726573844
commit
90d25d0835
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user