1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-09-28 06:59:02 +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:
arnaudroques 2018-11-22 21:50:24 +01:00 committed by GitHub
commit 697ca8f7f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);