Fix percent labels in Exported CSV Daily and Session Summary files

This commit is contained in:
Phil Olynyk 2017-08-01 20:10:06 -04:00 committed by Mark Watkins
parent 2f58cdc8e7
commit cfde6934d6

View File

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