mirror of
https://github.com/octoleo/plantuml.git
synced 2024-11-16 10:15:13 +00:00
Merge pull request #151 from sdettmer/timing_diagrams_ignore_footbox
Allow "hide footbox" in timing diagrams (ignoring it).
This commit is contained in:
commit
697ca8f7f2
@ -40,6 +40,7 @@ import java.util.List;
|
||||
|
||||
import net.sourceforge.plantuml.command.Command;
|
||||
import net.sourceforge.plantuml.command.UmlDiagramFactory;
|
||||
import net.sourceforge.plantuml.command.CommandFootboxIgnored;
|
||||
|
||||
public class TimingDiagramFactory extends UmlDiagramFactory {
|
||||
|
||||
@ -52,6 +53,7 @@ public class TimingDiagramFactory extends UmlDiagramFactory {
|
||||
protected List<Command> createCommands() {
|
||||
|
||||
final List<Command> cmds = new ArrayList<Command>();
|
||||
cmds.add(new CommandFootboxIgnored());
|
||||
|
||||
addCommonCommands(cmds);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user