From cfde6934d6df95dfd28dbdf232bf28f1870f3636 Mon Sep 17 00:00:00 2001 From: Phil Olynyk Date: Tue, 1 Aug 2017 20:10:06 -0400 Subject: [PATCH] Fix percent labels in Exported CSV Daily and Session Summary files --- sleepyhead/exportcsv.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sleepyhead/exportcsv.cpp b/sleepyhead/exportcsv.cpp index 0bae9cac..8bb528da 100644 --- a/sleepyhead/exportcsv.cpp +++ b/sleepyhead/exportcsv.cpp @@ -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); } }