change disable action method

This commit is contained in:
Val Erastov 2016-10-13 00:40:17 -07:00
parent 941edf908d
commit 0156a974d5

View file

@ -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<br>" + action.state.hint);
this.app.inputManager.messageSink.info("action '"+actionId+"' is disabled and can't be executed<br>" + action.state.hint);
}
};