Skip to content

Commit

Permalink
fix: prevented drag events when plugin is enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
gclaussn committed Mar 1, 2025
1 parent e57463b commit e850445
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions camunda-modeler-plugin/main/bpmndt/Plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ export default class Plugin {
// subscribe events
eventBus.on("commandStack.element.updateProperties.postExecuted", this._updateFlowNodeId);
eventBus.on("diagram.destroy", this._destroy);
eventBus.on("drag.start", 1500, this._ignoreEvent);
eventBus.on("editorActions.init", this._registerMenuActions);
eventBus.on("element.click", 1500, this._handleClickElement);
eventBus.on("element.dblclick", 3500, this._ignoreEvent);
Expand Down

0 comments on commit e850445

Please sign in to comment.