fix: missing label in activity diagrams

https://github.com/plantuml/plantuml/issues/1622#issuecomment-1847091587
This commit is contained in:
Arnaud Roques 2023-12-11 19:03:13 +01:00
parent a061b11305
commit a87f844064
1 changed files with 7 additions and 2 deletions

View File

@ -129,8 +129,13 @@ public class InstructionList extends WithNote implements Instruction, Instructio
@Override
public Ftile createFtile(FtileFactory factory) {
if (all.size() == 0)
return new FtileEmpty(factory.skinParam(), defaultSwimlane);
if (all.size() == 0) {
Ftile result = new FtileEmpty(factory.skinParam(), defaultSwimlane);
// Not a typo, in that case, we decide to decorate the entry link.
if (outlinkRendering != null)
result = factory.decorateIn(result, outlinkRendering);
return result;
}
final List<WeldingPoint> breaks = new ArrayList<>();
Ftile result = eventuallyAddNote(factory, null, getSwimlaneIn(), VerticalAlignment.CENTER);