Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
bonita
bonita-studio
Commits
217cdfca
Commit
217cdfca
authored
Jan 09, 2018
by
Romain Bioteau
Browse files
fix(bpmn) fix y lane position computation
Closes BS-17819
parent
beb36bd0
Changes
1
Hide whitespace changes
Inline
Side-by-side
bundles/plugins/org.bonitasoft.studio.exporter/src/org/bonitasoft/studio/exporter/bpmn/transfo/BPMNShapeFactory.java
View file @
217cdfca
...
...
@@ -175,7 +175,7 @@ public class BPMNShapeFactory {
int
index
=
lanes
.
indexOf
(
lane
);
int
y
=
0
;
while
(
index
>
0
)
{
y
=
+
modelExporter
.
getBounds
(
modelExporter
.
getElementNotationNode
(
lanes
.
get
(
index
-
1
))).
getHeight
();
y
=
y
+
modelExporter
.
getBounds
(
modelExporter
.
getElementNotationNode
(
lanes
.
get
(
index
-
1
))).
getHeight
();
index
--;
}
return
y
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment