Skip to content

Commit

Permalink
Fix issue #1852: Silent install blocked
Browse files Browse the repository at this point in the history
  • Loading branch information
sdottaka committed May 15, 2023
1 parent b6e5cbe commit fcd9a98
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Installer/InnoSetup/WinMergeARM64.is6.iss
Original file line number Diff line number Diff line change
Expand Up @@ -882,7 +882,7 @@ Begin
{Display a dialog asking the user if they'd like to delete the previous start menu group}
{If they'd like to delete the previous start menu group then...}
If Msgbox(strMessage, mbConfirmation, mb_YesNo) = mrYes Then
If SuppressibleMsgbox(strMessage, mbConfirmation, mb_YesNo, mrYes) = mrYes Then
Begin
strOld := ExpandConstant('{commonprograms}\') + strOld;
{Remove old start menu}
Expand Down
2 changes: 1 addition & 1 deletion Installer/InnoSetup/WinMergeX64.is6.iss
Original file line number Diff line number Diff line change
Expand Up @@ -881,7 +881,7 @@ Begin
{Display a dialog asking the user if they'd like to delete the previous start menu group}
{If they'd like to delete the previous start menu group then...}
If Msgbox(strMessage, mbConfirmation, mb_YesNo) = mrYes Then
If SuppressibleMsgbox(strMessage, mbConfirmation, mb_YesNo, mrYes) = mrYes Then
Begin
strOld := ExpandConstant('{commonprograms}\') + strOld;
{Remove old start menu}
Expand Down
2 changes: 1 addition & 1 deletion Installer/InnoSetup/WinMergeX64.iss
Original file line number Diff line number Diff line change
Expand Up @@ -862,7 +862,7 @@ Begin
{Display a dialog asking the user if they'd like to delete the previous start menu group}
{If they'd like to delete the previous start menu group then...}
If Msgbox(strMessage, mbConfirmation, mb_YesNo) = mrYes Then
If SuppressibleMsgbox(strMessage, mbConfirmation, mb_YesNo, mrYes) = mrYes Then
Begin
strOld := ExpandConstant('{commonprograms}\') + strOld;
{Remove old start menu}
Expand Down
2 changes: 1 addition & 1 deletion Installer/InnoSetup/WinMergeX64NonAdmin.iss
Original file line number Diff line number Diff line change
Expand Up @@ -860,7 +860,7 @@ Begin
{Display a dialog asking the user if they'd like to delete the previous start menu group}
{If they'd like to delete the previous start menu group then...}
If Msgbox(strMessage, mbConfirmation, mb_YesNo) = mrYes Then
If SuppressibleMsgbox(strMessage, mbConfirmation, mb_YesNo, mrYes) = mrYes Then
Begin
strOld := ExpandConstant('{commonprograms}\') + strOld;
{Remove old start menu}
Expand Down
2 changes: 1 addition & 1 deletion Installer/InnoSetup/WinMergeX86.iss
Original file line number Diff line number Diff line change
Expand Up @@ -882,7 +882,7 @@ Begin
{Display a dialog asking the user if they'd like to delete the previous start menu group}
{If they'd like to delete the previous start menu group then...}
If Msgbox(strMessage, mbConfirmation, mb_YesNo) = mrYes Then
If SuppressibleMsgbox(strMessage, mbConfirmation, mb_YesNo, mrYes) = mrYes Then
Begin
strOld := ExpandConstant('{commonprograms}\') + strOld;
{Remove old start menu}
Expand Down

0 comments on commit fcd9a98

Please sign in to comment.