From 0156a974d530db08d23a65d79976eccfcb66e1f1 Mon Sep 17 00:00:00 2001 From: Val Erastov Date: Thu, 13 Oct 2016 00:40:17 -0700 Subject: [PATCH] change disable action method --- web/app/3d/actions/actions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/app/3d/actions/actions.js b/web/app/3d/actions/actions.js index f65cbf0d..64dd5531 100644 --- a/web/app/3d/actions/actions.js +++ b/web/app/3d/actions/actions.js @@ -66,7 +66,7 @@ ActionManager.prototype.run = function(actionId, event) { if (action.state.enabled) { action.__handler(this.app, event); } else { - this.app.inputManager.messageSink.info("action '"+actionId+"' is disabled and can't be launched
" + action.state.hint); + this.app.inputManager.messageSink.info("action '"+actionId+"' is disabled and can't be executed
" + action.state.hint); } };