syntax error on coloring Incoming and outgoing messages

0 votes
asked May 17, 2013 in Bug by laplasz (160 points)

This code is valid:

 

@startuml
[-> Node: Start TC
Node -> SUT : RAR
activate Node
Node <- SUT : RAA
[<-Node: Succ
[<-Node: Fail
deactivate Node
@enduml
 
This code is not containing color:
 
@startuml
[-> Node: Start TC
Node -> SUT : RAR
activate Node
Node <- SUT : RAA
[<[#blue]-Node: Succ
[<[#red]-Node: Fail
deactivate Node
@enduml
 

1 Answer

+1 vote
answered May 18, 2013 by plantuml (295,000 points)
selected May 20, 2013 by laplasz
 
Best answer
Hello,

Thanks for the report : this has been solved in version 7966

Regards,
commented May 20, 2013 by laplasz (160 points)
Hi there! Thanks for the quick fix - no it is working - however I would use this command as well:
Bob -> Alice : hello
Bob <- Alice : szia
[<-[#red]- Bob: csovi
But this is not working, only [<[#red]- Bob: csovi
Can you verify this?
Thanks a lot
commented May 20, 2013 by plantuml (295,000 points)
You can use [<[#red]-- Bob: csovi
But we will also implement your syntax proposition.
Regards,
commented May 20, 2013 by laplasz (160 points)
thanks - i get this command from your guide <-[#red]- , so I just recommend it to be consistent
...