From d58c2c96a390d7c290c1c12908ef1b8db0679bdd Mon Sep 17 00:00:00 2001 From: reznet Date: Tue, 11 Aug 2015 15:16:03 -0500 Subject: [PATCH] Display session slice tooltips in local time The Sessions graph on the overview page displays the start time of each session slice in a tooltip when the mouse is over the slice. Since this is displayed to the user, it should appear in the local time zone. --- sleepyhead/Graphs/gSessionTimesChart.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sleepyhead/Graphs/gSessionTimesChart.cpp b/sleepyhead/Graphs/gSessionTimesChart.cpp index 3e2fcaef..807f17aa 100644 --- a/sleepyhead/Graphs/gSessionTimesChart.cpp +++ b/sleepyhead/Graphs/gSessionTimesChart.cpp @@ -900,7 +900,7 @@ void gSessionTimesChart::paint(QPainter &painter, gGraph &graph, const QRegion & // segments for (int j=0; jm_slices.at(j); - QDateTime st = QDateTime::fromMSecsSinceEpoch(slice.start, Qt::UTC); + QDateTime st = QDateTime::fromMSecsSinceEpoch(slice.start, Qt::LocalTime); float s1 = float(splittime.secsTo(st)) / 3600.0; @@ -915,7 +915,7 @@ void gSessionTimesChart::paint(QPainter &painter, gGraph &graph, const QRegion & } else { // otherwise just show session duration qint64 sf = sess->first(); - QDateTime st = QDateTime::fromMSecsSinceEpoch(sf, Qt::UTC); + QDateTime st = QDateTime::fromMSecsSinceEpoch(sf, Qt::LocalTime); float s1 = float(splittime.secsTo(st)) / 3600.0; float s2 = sess->hours();