Browse Source

Merge d6b8a8cdb1 into 1944e59ae1

pull/455/merge
Erwin Van de Velde 1 month ago
committed by GitHub
parent
commit
72466fe85b
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 2 deletions
  1. +6
    -2
      diagrams/__init__.py

+ 6
- 2
diagrams/__init__.py View File

@@ -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…
Cancel
Save