From 4776710a2bb359a68d66804a9a757bb10e8c2774 Mon Sep 17 00:00:00 2001 From: Phil Olynyk Date: Tue, 1 Aug 2017 22:16:08 -0400 Subject: [PATCH] Fix percentile lables in header --- sleepyhead/exportcsv.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sleepyhead/exportcsv.cpp b/sleepyhead/exportcsv.cpp index b16eb552..49fb2fbc 100644 --- a/sleepyhead/exportcsv.cpp +++ b/sleepyhead/exportcsv.cpp @@ -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++) {