Updated 'alert' command to use OK message box instead of YESNO dialog.
Bryan Roe committed
Mar 19, 2020 at 14:10 UTC
6f686b6be780aa6fadf297469e4627cfaba69bee
1 file changed
+1
-1
agents/meshcore.js
+1
-1
@@ -1985,7 +1985,7 @@ function createMeshCore(agent) {
1985
}
1986
else
1987
{
1988
- this._alert = require('message-box').create(p[0], p[1], p.length==3?parseInt(p[2]):9999);
1988
+ this._alert = require('message-box').create(p[0], p[1], p.length==3?parseInt(p[2]):9999,1);
1989
}
1990
}
1991
break;