瀏覽代碼

Merge d6b8a8cdb1 into 1944e59ae1

pull/455/merge
Erwin Van de Velde 1 月之前
committed by GitHub
父節點
當前提交
72466fe85b
沒有發現已知的金鑰在資料庫的簽署中 GPG 金鑰 ID: B5690EEEBB952194
共有 1 個檔案被更改,包括 6 行新增2 行删除
  1. +6
    -2
      diagrams/__init__.py

+ 6
- 2
diagrams/__init__.py 查看文件

@@ -430,8 +430,12 @@ class Node:
return uuid.uuid4().hex

def _load_icon(self):
basedir = Path(os.path.abspath(os.path.dirname(__file__)))
return os.path.join(basedir.parent, self._icon_dir, self._icon)
if self._icon_dir is None or not self._icon_dir.startswith(os.path.sep):
basedir = Path(os.path.abspath(os.path.dirname(__file__)))
return os.path.join(basedir.parent, self._icon_dir, self._icon)
else:
return os.path.join(self._icon_dir, self._icon)



class Edge:


Loading…
取消
儲存