Arch: Added longname and description to ArchSpace Text variables
This commit is contained in:
committed by
Yorik van Havre
parent
74a3232452
commit
e0deea0068
@@ -656,6 +656,10 @@ class _ViewProviderSpace(ArchComponent.ViewProviderComponent):
|
||||
t = t.replace("$walls",vobj.Object.FinishWalls)
|
||||
if hasattr(vobj.Object,"FinishCeiling"):
|
||||
t = t.replace("$ceiling",vobj.Object.FinishCeiling)
|
||||
if hasattr(vobj.Object,"LongName"):
|
||||
t = t.replace("$longname",vobj.Object.LongName)
|
||||
if hasattr(vobj.Object,"Description"):
|
||||
t = t.replace("$description",vobj.Object.Description)
|
||||
if first:
|
||||
text1.append(t)
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user