Fix node attrs not being copied to Cluster

pull/823/head
Bruno Meneguello 5 years ago
parent f7dad6bb0e
commit d3ee0b66bc

@ -351,7 +351,8 @@ class Node(_Cluster):
# Set attributes. # Set attributes.
for k, v in self._default_graph_attrs.items(): for k, v in self._default_graph_attrs.items():
self.dot.graph_attr[k] = v self.dot.graph_attr[k] = v
self.dot.graph_attr['tooltip'] = self._attrs['tooltip'] for k, v in self._attrs.items():
self.dot.graph_attr[k] = v
icon = self._load_icon() icon = self._load_icon()
if icon: if icon:

Loading…
Cancel
Save