Skip to content

Commit

Permalink
fix nissl-lab#1315 - rollback the change of dt2D and dtr property
Browse files Browse the repository at this point in the history
  • Loading branch information
tonyqus committed Apr 24, 2024
1 parent 9e6eef1 commit 83106c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions OpenXmlFormats/Spreadsheet/Sheet.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2694,8 +2694,8 @@ internal void Write(StreamWriter sw, string nodeName)
XmlHelper.WriteAttribute(sw, "t", this.t.ToString());
XmlHelper.WriteAttribute(sw, "aca", this.aca, false);
XmlHelper.WriteAttribute(sw, "ref", this.@ref);
XmlHelper.WriteAttribute(sw, "dt2D", this.dt2D, true);
XmlHelper.WriteAttribute(sw, "dtr", this.dtr, true);
XmlHelper.WriteAttribute(sw, "dt2D", this.dt2D, false);
XmlHelper.WriteAttribute(sw, "dtr", this.dtr, false);
XmlHelper.WriteAttribute(sw, "del1", this.del1, false);
XmlHelper.WriteAttribute(sw, "del2", this.del2, false);
XmlHelper.WriteAttribute(sw, "r1", this.r1);
Expand Down

0 comments on commit 83106c2

Please sign in to comment.