forked from jan/fatamorgana
Layer names should be NStrings
Not sure about this -- maybe they're actually AStrings, in which case the LayerName constructor also needs to change
This commit is contained in:
parent
6cef118534
commit
b1844d6b0d
@ -812,7 +812,7 @@ class LayerName(Record):
|
||||
raise InvalidDataError('Invalid record id for LayerName: '
|
||||
'{}'.format(record_id))
|
||||
is_textlayer = (record_id == 12)
|
||||
nstring = AString.read(stream)
|
||||
nstring = NString.read(stream)
|
||||
layer_interval = read_interval(stream)
|
||||
type_interval = read_interval(stream)
|
||||
record = LayerName(nstring, layer_interval, type_interval, is_textlayer)
|
||||
|
Loading…
Reference in New Issue
Block a user