Activity beta: arrow is longer in partition

0 votes
asked May 2, 2018 in Bug by hidehide55 (120 points)
edited May 7, 2018 by hidehide55

Hello.

Arrow is much longer in partition.
In example, especialy the arrow before act2 is long.

Q1. Is there any reason?
Q2. How can I set length of arrow?

Environment:
* PlantUML 1.2018.03
* dot - graphviz version 2.36.0
* Ubuntu 14.04

Thanks.

Code:

@startuml
start
:act1;
if (cond ?) then (label1)
  stop
endif
:act2;
if (cond ?) then (label2)
  :act3;
else (label3)
  :act4;
endif
:act5;

partition foo {
  :act1;
  if (cond ?) then (label1)
    stop
  endif
  :act2;
  if (cond ?) then (label2)
    :act3;
  else (label 3)
    :act4;
  endif
  :act5;
}
stop
@enduml

1 Answer

0 votes
answered May 2, 2018 by plantuml (294,960 points)
selected May 3, 2018 by hidehide55
commented May 3, 2018 by hidehide55 (120 points)
Thank you for quick response.

I checked fix at PlantUML Web Server. It was OK.
Then I tried beta (1.2018.04beta8) on my Windows environment(different from first question), it was not fixed.
I will try on Ubuntu environment few days later.

Windows Environment:
* PlantUML 1.2018.04beta8
* dot - not installed
* Windows 10 Pro 1709 64bit

Thanks.
commented May 3, 2018 by plantuml (294,960 points)
Sorry, we've uploaded a bad version.
Can you try again http://beta.plantuml.net/plantuml.jar ?
It should be 1.2018.05beta1 now and should fix the issue
commented May 4, 2018 by hidehide55 (120 points)
Hi,

I checked on Windows environment. It was OK.

Thanks.
commented May 7, 2018 by hidehide55 (120 points)
Hi,

I checked new stable version 1.2018.05 on Ubuntu environment. It was OK.

Thanks.
...