When I try to set up a text style inside a BLOCK, TrueView stops with an error. If I remove the style line the DXF is accepted
doc = ezdxf.new(dxfversion="AC1024")
#...
device = doc.blocks.new(name='device')
device.add_text("eBCON",
dxfattribs={
#'style': 'LiberationSerif', #
'height': 8}
).set_pos((marg+margxdev+2, marg+margydev+2), align='LEFT')
Its an Autocad limitation or a non implemented feature in ezDXF?
I have no full Autocad available for checking...