UPlot: fixed number of digits after the decimal points to 6 when exporting data to text

This commit is contained in:
matlabbe
2022-04-04 11:42:36 -04:00
parent d35193721b
commit 3e630e0250

View File

@@ -1740,7 +1740,7 @@ QString UPlotLegend::getAllCurveDataAsText() const
} }
else else
{ {
text.append(QString::number(axes[j][i])); text.append(QString::number(axes[j][i], 'f'));
} }
if(j+1<axes.size()) if(j+1<axes.size())
{ {