From 51c476f5217839d9afd5effcf80ff91b3830d066 Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Mon, 18 Jan 2016 16:59:28 -0800 Subject: [PATCH] make message box for closing app multiline --- cmake/templates/NSIS.template.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cmake/templates/NSIS.template.in b/cmake/templates/NSIS.template.in index e13f107619..e347cd856e 100644 --- a/cmake/templates/NSIS.template.in +++ b/cmake/templates/NSIS.template.in @@ -993,7 +993,8 @@ FunctionEnd !define UniqueID ${__LINE__} ; the process is running, ask the user if they want us to close it - MessageBox MB_OKCANCEL|MB_ICONEXCLAMATION "${displayName} cannot be ${action} while ${displayName} is running. Would you like the ${prompter} to try closing it?" + MessageBox MB_OKCANCEL|MB_ICONEXCLAMATION \ + "${displayName} cannot be ${action} while ${displayName} is running. Would you like the ${prompter} to try closing it?" \ IDOK AttemptClose_${UniqueID} IDCANCEL Abort_${UniqueID} /SD IDCANCEL AttemptClose_${UniqueID}: