Grouping messages should be on top level.

0 votes
asked Mar 9, 2017 in Bug by roipoussiere (140 points)

The plantUML code below:

actor Smith
box "A box" #LightBlue
participant foo
participant bar
end box
participant baz

Smith -> foo: call foo
alt if something
foo -> bar: do something
else something else
foo -> baz: do something else
end

generate this image:

As you can see, the backgroud of the actors box is above the grouping message (even if the grouping message have a background color).

The diagram could be on top level for a better visibility.

1 Answer

+1 vote
answered Mar 13, 2017 by plantuml (294,960 points)
selected Mar 14, 2017 by roipoussiere
 
Best answer
Thanks for the feedback.

This should be fixed in V8058.

Regards,
commented Jan 25, 2019 by anonymous
Ah solved it with `alt #transparent NewEmail...` Thanks!
commented Jan 25, 2019 by anonymous
I actually came across this comment because I am looking for the former behavior. How can get the shown behavior?
...