mirror of
https://github.com/introlab/rtabmap.git
synced 2026-09-02 01:20:25 +08:00
UPlot: fixed number of digits after the decimal points to 6 when exporting data to text
This commit is contained in:
@@ -1740,7 +1740,7 @@ QString UPlotLegend::getAllCurveDataAsText() const
|
||||
}
|
||||
else
|
||||
{
|
||||
text.append(QString::number(axes[j][i]));
|
||||
text.append(QString::number(axes[j][i], 'f'));
|
||||
}
|
||||
if(j+1<axes.size())
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user