By powery - Wednesday, August 24, 2011
|
Hello,
there is no Place Description filled in Place Properties windows in Narrative Report output.
Is this correct?
|
By genome - Thursday, August 25, 2011
|
No, a missing place description is not correct, it is a bug. I'll correct it in the skin for the next release, but meanwhile you can edit Code/Lang.vbs line 1956 as follows:
from:
Report.Write3Br "", Util.IfElse(p.Description <> p.Parent.Description, StrFormatText(p, p.Description), ""), ""
to:
Report.Write3Br "", Util.IfElse((p.Description & "") <> (p.Parent.Description & ""), StrFormatText(p, p.Description), ""), ""
|
|
|