mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
Fix line cursor values not showing when multiple machines present
This commit is contained in:
parent
0b31d0ea3f
commit
f935f3dd61
@ -310,6 +310,7 @@ QString gLineChart::getMetaString(qint64 time)
|
||||
|
||||
for (int i=0; i<m_codes.size(); ++i) {
|
||||
ChannelID code = m_codes[i];
|
||||
|
||||
if (m_day->channelHasData(code)) {
|
||||
val = m_day->lookupValue(code, time, m_square_plot);
|
||||
lasttext += " "+QString("%1: %2").arg(schema::channel[code].label()).arg(val,0,'f',2); //.arg(schema::channel[code].units());
|
||||
|
@ -164,7 +164,9 @@ EventDataType Day::lookupValue(ChannelID code, qint64 time, bool square)
|
||||
|
||||
if (sess.enabled()) {
|
||||
if ((time > sess.first()) && (time < sess.last())) {
|
||||
return sess.SearchValue(code,time,square);
|
||||
if (sess.channelExists(code)) {
|
||||
return sess.SearchValue(code,time,square);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -645,11 +645,6 @@ void ResmedImport::run()
|
||||
}
|
||||
loader->saveMutex.unlock();
|
||||
|
||||
if (sessionid == 1408571701) {
|
||||
int i=5; Q_UNUSED(i);
|
||||
}
|
||||
|
||||
|
||||
if (!group.EVE.isEmpty()) {
|
||||
loader->LoadEVE(sess, group.EVE);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user