Skip to content

Commit

Permalink
Slight fix
Browse files Browse the repository at this point in the history
  • Loading branch information
reportmill committed Nov 20, 2021
1 parent 56f2136 commit e35b6fd
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/snapcharts/model/Trace.java
Original file line number Diff line number Diff line change
Expand Up @@ -1076,6 +1076,8 @@ public Object fromXML(XMLArchiver anArchiver, XMLElement anElement)
setShowArea(anElement.getAttributeBoolValue(ShowArea_Prop));
if (anElement.hasAttribute(ShowPoints_Prop))
setShowPoints(anElement.getAttributeBoolValue(ShowPoints_Prop));
else if (anElement.hasAttribute("ShowSymbols")) // Legacy
setShowPoints(true);
if (anElement.hasAttribute(ShowTags_Prop))
setShowTags(anElement.getAttributeBoolValue(ShowTags_Prop));

Expand Down

0 comments on commit e35b6fd

Please sign in to comment.