mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-10 18:36:30 +01:00
change disable action method
This commit is contained in:
parent
941edf908d
commit
0156a974d5
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue