'newpage' makes the actors go vertical, why?

0 votes
asked May 30, 2016 in To be sorted by junkw (240 points)
edited May 30, 2016 by junkw

same code:

1) without 'newpage' in it

@startuml
left to right direction
actor a
actor b
actor c
actor d
actor e
actor f
actor g
actor h
actor i
actor j
actor k
actor l
actor m
 
m-->(do)
 
actor z
z-->(zz)
@enduml


http://plantuml.com/plantuml/png/BSYx2S0m30N0NbEeZ0kla5qSVvNO4HXLcZu4NdLmipPZKzxIXt6HNRE9lfIowUO4BvXXWHKssE600c_um0aNqOhnF8e6GZdvF-xX0m00

2) added a 'newpage' in it

@startuml
left to right direction
actor a
actor b
actor c
actor d
actor e
actor f
actor g
actor h
actor i
actor j
actor k
actor l
actor m
 
m-->(do)
 
newpage
 
actor z
z-->(zz)
@enduml
 

http://plantuml.com/plantuml/png/BSan3e0W30NGlQTWb84hU1U4WbMWXZGnuVJ6v4zlU8sBELCtfPxcianE9Zee9jFf8ZnWWXaoBB324mgyu0qRx4GzX7tBwea6lq-iJBX5ww-r_0S0

----------------

Why the actors in the example 2) are now vertical? I want them to remain in pack

1 Answer

0 votes
answered May 31, 2016 by plantuml (295,000 points)
Thanks for the feedback!

This should be fixed in version 8042.

Regards,
commented May 31, 2016 by junkw (240 points)
thanks, appreciated
...