1
0
mirror of https://github.com/Ylianst/MeshAgent synced 2025-12-15 15:53:55 +00:00

Fixed bug in message box return value, introduced with new alert modifications

This commit is contained in:
Bryan Roe
2020-04-04 14:17:22 -07:00
parent e89274c835
commit 0c1d7d6caa
2 changed files with 13 additions and 13 deletions

File diff suppressed because one or more lines are too long

View File

@@ -57,16 +57,16 @@ var childScript = "\
{\ {\
switch(r.Val)\ switch(r.Val)\
{\ {\
case IDOK.toString():\ case " + IDOK.toString() + ":\
case IDCANCEL.toString():\ case " + IDCANCEL.toString() + ":\
case IDABORT.toString():\ case " + IDABORT.toString() + ":\
case IDRETRY.toString():\ case " + IDRETRY.toString() + ":\
case IDIGNORE.toString():\ case " + IDIGNORE.toString() + ":\
case IDYES.toString():\ case " + IDYES.toString() + ":\
require('ScriptContainer').send(r.Val);\ require('ScriptContainer').send(r.Val);\
break;\ break;\
default:\ default:\
require('ScriptContainer').send(IDNO.toString());\ require('ScriptContainer').send(" + IDNO.toString() + ");\
break;\ break;\
}\ }\
process.exit();\ process.exit();\