Support symbol None (from old versions)

Fix #732
This commit is contained in:
Julien Duponchelle
2016-10-20 09:44:24 +02:00
parent 66a789672d
commit 43236746f9
2 changed files with 4 additions and 1 deletions

View File

@ -204,6 +204,9 @@ class Node:
@symbol.setter
def symbol(self, val):
if val is None:
val = ":/symbols/computer.svg"
# No abs path, fix them (bug of 1.X)
if not val.startswith(":") and os.path.abspath(val):
val = os.path.basename(val)