-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(modeling): skip moving if label is not yet created.
Related to zeebe-io/zeebe-modeler#134
- Loading branch information
Showing
3 changed files
with
98 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 31 additions & 0 deletions
31
test/spec/features/modeling/behavior/LabelBehavior.copyPaste.bpmn
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<bpmn:definitions xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" id="Definitions_0cu5n0d" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Camunda Modeler" exporterVersion="3.4.0"> | ||
<bpmn:process id="Process_1cirp64" isExecutable="true"> | ||
<bpmn:startEvent id="Source"> | ||
<bpmn:outgoing>SequenceFlow</bpmn:outgoing> | ||
</bpmn:startEvent> | ||
<bpmn:task id="Target"> | ||
<bpmn:incoming>SequenceFlow</bpmn:incoming> | ||
</bpmn:task> | ||
<bpmn:sequenceFlow id="SequenceFlow" name="A" sourceRef="Source" targetRef="Target" /> | ||
</bpmn:process> | ||
<bpmndi:BPMNDiagram id="BPMNDiagram_1"> | ||
<bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="Process_1cirp64"> | ||
<bpmndi:BPMNShape id="_BPMNShape_StartEvent_2" bpmnElement="Source"> | ||
<dc:Bounds x="179" y="79" width="36" height="36" /> | ||
</bpmndi:BPMNShape> | ||
<bpmndi:BPMNShape id="Task_1m56bsl_di" bpmnElement="Target"> | ||
<dc:Bounds x="300" y="250" width="100" height="80" /> | ||
</bpmndi:BPMNShape> | ||
<bpmndi:BPMNEdge id="SequenceFlow_di" bpmnElement="SequenceFlow"> | ||
<di:waypoint x="215" y="97" /> | ||
<di:waypoint x="258" y="97" /> | ||
<di:waypoint x="258" y="290" /> | ||
<di:waypoint x="300" y="290" /> | ||
<bpmndi:BPMNLabel> | ||
<dc:Bounds x="270" y="191" width="7" height="14" /> | ||
</bpmndi:BPMNLabel> | ||
</bpmndi:BPMNEdge> | ||
</bpmndi:BPMNPlane> | ||
</bpmndi:BPMNDiagram> | ||
</bpmn:definitions> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters