Skip to content

Commit

Permalink
assign proper default value to xdictionary object handle; 3:0 instead…
Browse files Browse the repository at this point in the history
… of 0:0
  • Loading branch information
brettfo committed Dec 4, 2022
1 parent 1f24d1b commit bf9b8f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/IxMilia.Dwg/Objects/DwgObject.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public DwgXData XData
internal short _entityCount;
internal List<DwgHandleReference> _entityHandleReferences = new List<DwgHandleReference>();
protected DwgHandleReference _nullHandleReference;
protected DwgHandleReference _xDictionaryObjectHandleReference;
protected DwgHandleReference _xDictionaryObjectHandleReference = new DwgHandleReference(DwgHandleReferenceCode.SoftPointer, 0);
private DwgXData _xdata = new DwgXData();

internal virtual bool IsEntity => false;
Expand Down

0 comments on commit bf9b8f6

Please sign in to comment.