mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
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:
parent
59a0823d20
commit
646af88261
@ -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()));
|
||||
|
Loading…
Reference in New Issue
Block a user