Commit a8fb8489 authored by Bram Schoenmakers's avatar Bram Schoenmakers

Remove tooltip now we print the full text

parent 182c845f
......@@ -66,17 +66,15 @@ class DotPrinter(Printer):
return node_result
node_name = lambda t: '_' + str(self.todolist.number(t))
node_tooltip = lambda t: escape(t.text())
result = 'digraph {\n'
result += 'node [ shape=plaintext ]\n';
# print todos
for todo in p_todos:
result += ' {} [label={}, tooltip="{}"]\n'.format(
result += ' {} [label={}]\n'.format(
node_name(todo),
node_label(todo),
node_tooltip(todo),
)
# print edges
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment