mirror of
https://github.com/octoleo/plantuml.git
synced 2024-11-21 20:45:10 +00:00
fix: missing label in activity diagrams
https://github.com/plantuml/plantuml/issues/1622#issuecomment-1847091587
This commit is contained in:
parent
a061b11305
commit
a87f844064
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user