Open jpsluka opened 3 years ago
Twedit++ creates cell type XML definitions like
<CellType TypeId="0" TypeName="Medium"/> <CellType TypeId="1" TypeName="PGC"/> <CellType Freeze="" TypeId="2" TypeName="signalon"/>
It would be better if the "Freeze" tag was last in the XML so the cell typeId's lineup vertically.
<CellType TypeId="0" TypeName="Medium"/> <CellType TypeId="1" TypeName="PGC"/> <CellType TypeId="2" TypeName="signalon" Freeze=""/>
Agree. I think this was a consequence of using dictionaries to order attributes - hence ordering is driven by Python or C++ dictionary ordering schedme
Twedit++ creates cell type XML definitions like
It would be better if the "Freeze" tag was last in the XML so the cell typeId's lineup vertically.