From 1f8d8b3f8d784ca5076272d1ffe3e580c561c85b Mon Sep 17 00:00:00 2001 From: Daniel Rojas Date: Fri, 5 Aug 2022 17:05:20 +0200 Subject: [PATCH] Improve conductor table rendering --- src/wireviz/wv_graphviz.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/wireviz/wv_graphviz.py b/src/wireviz/wv_graphviz.py index 8c6a5dd..259033d 100644 --- a/src/wireviz/wv_graphviz.py +++ b/src/wireviz/wv_graphviz.py @@ -283,8 +283,10 @@ def gv_conductor_table(cable) -> Table: cells_above = [ Td(" " + ", ".join(ins), align="left"), + Td(" "), # increase cell spacing here Td(bom_bubble(wire.bom_id)) if cable.category == "bundle" else None, Td(":".join([wi for wi in wireinfo if wi is not None and wi != ""])), + Td(" "), # increase cell spacing here Td(", ".join(outs) + " ", align="right"), ] cells_above = [cell for cell in cells_above if cell is not None]