소스 검색

Fix node attrs not being copied to Cluster

pull/823/head
Bruno Meneguello 3 년 전
부모
커밋
d3ee0b66bc
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. +2
    -1
      diagrams/__init__.py

+ 2
- 1
diagrams/__init__.py 파일 보기

@@ -351,7 +351,8 @@ class Node(_Cluster):
# Set attributes.
for k, v in self._default_graph_attrs.items():
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()
if icon:


불러오는 중...
취소
저장