mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
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.
This commit is contained in:
parent
646af88261
commit
d58c2c96a3
@ -900,7 +900,7 @@ void gSessionTimesChart::paint(QPainter &painter, gGraph &graph, const QRegion &
|
|||||||
// segments
|
// segments
|
||||||
for (int j=0; j<slize; ++j) {
|
for (int j=0; j<slize; ++j) {
|
||||||
const SessionSlice & slice = sess->m_slices.at(j);
|
const SessionSlice & slice = sess->m_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;
|
float s1 = float(splittime.secsTo(st)) / 3600.0;
|
||||||
|
|
||||||
@ -915,7 +915,7 @@ void gSessionTimesChart::paint(QPainter &painter, gGraph &graph, const QRegion &
|
|||||||
} else {
|
} else {
|
||||||
// otherwise just show session duration
|
// otherwise just show session duration
|
||||||
qint64 sf = sess->first();
|
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 s1 = float(splittime.secsTo(st)) / 3600.0;
|
||||||
|
|
||||||
float s2 = sess->hours();
|
float s2 = sess->hours();
|
||||||
|
Loading…
Reference in New Issue
Block a user