From 4deed7d1a81700312ba1c3f86c7bf63bb60348a6 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Fri, 20 Apr 2018 19:54:40 +0300 Subject: Fix: connect actions --- icktool | 2 ++ 1 file changed, 2 insertions(+) (limited to 'icktool') diff --git a/icktool b/icktool index 2e2acfc..63b3cda 100755 --- a/icktool +++ b/icktool @@ -327,6 +327,8 @@ class BuildGraphCommand(Command): f.write('digraph "build_graph" {\n') for i, action in enumerate(actions): self._describe_node(f, i, current, action) + if i > 0: + f.write('a{} -> a{}\n'.format(i-1, i)) f.write('}\n') def _describe_node(self, f, i, current, action): -- cgit v1.2.1