Activity Beta: partition name of more than one word does not work

+1 vote
asked Dec 1, 2014 in Bug by Mallvina (180 points)
Hello when I name the partition with more than one word it doesnt work:

start
partition Input Interface {
    :read config file;
    :init internal variable;
}
partition Running {
    :wait for user interaction;
    :print information;
}

stop

another question: how to set up the color of partition?

thanks!

Lana

1 Answer

+2 votes
answered Dec 1, 2014 by plantuml (294,960 points)
selected Dec 1, 2014 by Mallvina
 
Best answer

Hello,

You can use:

start
partition #lightGreen "Input Interface" {
    :read config file;
    :init internal variable;
}
partition Running {
    :wait for user interaction;
    :print information;
}
stop

 

 

Regards,

commented Dec 1, 2014 by Mallvina (180 points)
Thanks for prompt reply! Works like a charm :)
...