mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
Fix percent labels in Exported CSV Daily and Session Summary files
This commit is contained in:
parent
2f58cdc8e7
commit
cfde6934d6
@ -212,7 +212,7 @@ void ExportCSV::on_exportButton_clicked()
|
|||||||
}
|
}
|
||||||
|
|
||||||
for (int i = 0; i < p90list.size(); i++) {
|
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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user