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:
File diff suppressed because one or more lines are too long
@@ -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();\
|
||||||
|
|||||||
Reference in New Issue
Block a user