Skip to content
This repository has been archived by the owner on Jul 11, 2023. It is now read-only.

Commit

Permalink
Add a new line in older message for easier reading
Browse files Browse the repository at this point in the history
  • Loading branch information
KurzedMetal committed Jul 4, 2019
1 parent 717610a commit 5224120
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion launcher.iss
Expand Up @@ -140,7 +140,9 @@ begin
if IsInstalled() then
begin
iMsgBoxAnswer := MsgBox('{#SetupSetting("AppName")} is already installed. Uninstall it before proceeding?', mbInformation, MB_YESNO);
iMsgBoxAnswer := MsgBox('{#SetupSetting("AppName")} is already installed.' + #13#10
+ 'Uninstall it before proceeding?',
mbInformation, MB_YESNO);
if iMsgBoxAnswer = IDYES then
begin
if UnInstallOldVersion() <> 0 then
Expand Down

0 comments on commit 5224120

Please sign in to comment.