Display daily line cursor in local time

The daily screen displays day and time of the graph cursor as the mouse moves around the graphs.  Since this time is displayed to the user, it should appear in the local time zone.
This commit is contained in:
reznet 2015-08-11 15:04:30 -05:00
parent 59a0823d20
commit 646af88261

View File

@ -1998,7 +1998,8 @@ void Daily::RedrawGraphs()
void Daily::on_LineCursorUpdate(double time)
{
if (time > 1) {
QDateTime dt = QDateTime::fromMSecsSinceEpoch(time, Qt::UTC);
// use local time since this string is displayed to the user
QDateTime dt = QDateTime::fromMSecsSinceEpoch(time, Qt::LocalTime);
QString txt = dt.toString("MMM dd HH:mm:ss.zzz");
dateDisplay->setText(txt);
} else dateDisplay->setText(QString(GraphView->emptyText()));