Skip to content
This repository has been archived by the owner on Oct 11, 2023. It is now read-only.

Commit

Permalink
Merge pull request #263 from dayi/master
Browse files Browse the repository at this point in the history
[2021/2/24]
  • Loading branch information
haplokuon committed Mar 8, 2021
2 parents b4dbbc7 + ae6aeda commit 9c4feed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion netDxf/IO/DxfWriter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3697,7 +3697,7 @@ private void AddDimensionStyleOverridesXData(XDataDictionary xdata, DimensionSty
break;
case DimensionStyleOverrideType.FitOptions:
xdataEntry.XDataRecord.Add(new XDataRecord(XDataCode.Int16, (short) 289));
xdataEntry.XDataRecord.Add(new XDataRecord(XDataCode.Int16, (short) styleOverride.Value));
xdataEntry.XDataRecord.Add(new XDataRecord(XDataCode.Int16, (short) (DimensionStyleFitOptions) styleOverride.Value));
break;
case DimensionStyleOverrideType.FitTextInside:
xdataEntry.XDataRecord.Add(new XDataRecord(XDataCode.Int16, (short) 174));
Expand Down

0 comments on commit 9c4feed

Please sign in to comment.