Skip to content

Commit

Permalink
fixed
Browse files Browse the repository at this point in the history
Issue #308
  • Loading branch information
rsoika committed Nov 13, 2023
1 parent f1fff86 commit b0f343a
Showing 1 changed file with 6 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@
import org.openbpmn.glsp.operations.BPMNComputedBoundsActionHandler;
import org.openbpmn.glsp.operations.BPMNDeleteNodeHandler;
import org.openbpmn.glsp.operations.BPMNPasteOperationHandler;
import org.openbpmn.glsp.operations.BPMNPropertyPanelUpdateAction;
import org.openbpmn.glsp.operations.BPMNReconnectEdgeOperationHandler;
import org.openbpmn.glsp.provider.BPMNCommandPaletteActionProvider;
import org.openbpmn.glsp.provider.BPMNToolPaletteItemProvider;
Expand Down Expand Up @@ -167,8 +166,6 @@ protected void configureOperationHandlers(final MultiBinding<OperationHandler<?>
// register apply operations send from the client
binding.add(BPMNApplyPropertiesUpdateOperationHandler.class);



// Extension handler
binding.add(BPMNCreateExtensionHandler.class);

Expand All @@ -182,11 +179,12 @@ protected void configureOperationHandlers(final MultiBinding<OperationHandler<?>
* The BPMNPropertyPanelUpdateAction is used by Extensions to signal the
* propertyPanel that we have an update of the current selected element
*/
@Override
protected void configureClientActions(MultiBinding<Action> binding) {
super.configureClientActions(binding);
binding.add(BPMNPropertyPanelUpdateAction.class);
}
// issue #308
// @Override
// protected void configureClientActions(MultiBinding<Action> binding) {
// super.configureClientActions(binding);
// binding.add(BPMNPropertyPanelUpdateAction.class);
// }

/**
* This method creates a new Multibinder to bind BPMNExension
Expand Down

0 comments on commit b0f343a

Please sign in to comment.