Fix percentile lables in header

This commit is contained in:
Phil Olynyk 2017-08-01 22:16:08 -04:00 committed by Mark Watkins
parent 58e251f251
commit 4776710a2b

View File

@ -219,7 +219,7 @@ void ExportCSV::on_exportButton_clicked()
}
for (int i = 0; i < p90list.size(); i++) {
header += sep + tr(" %1%").arg(percent*100.0, 0, 'f', 0) + schema::channel[p90list[i]].label();
header += sep + tr("%1% ").arg(percent*100.0, 0, 'f', 0) + schema::channel[p90list[i]].label();
}
for (int i = 0; i < maxlist.size(); i++) {