Erwin Van de Velde vor 1 Monat
committed by GitHub
Ursprung
Commit
72466fe85b
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden GPG-Schlüssel-ID: B5690EEEBB952194
1 geänderte Dateien mit 6 neuen und 2 gelöschten Zeilen
  1. +6
    -2
      diagrams/__init__.py

+ 6
- 2
diagrams/__init__.py Datei anzeigen

@@ -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:


Laden…
Abbrechen
Speichern