Fix line cursor values not showing when multiple machines present

This commit is contained in:
Mark Watkins 2014-08-22 23:59:27 +10:00
parent 0b31d0ea3f
commit f935f3dd61
3 changed files with 4 additions and 6 deletions

View File

@ -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());

View File

@ -164,10 +164,12 @@ EventDataType Day::lookupValue(ChannelID code, qint64 time, bool square)
if (sess.enabled()) {
if ((time > sess.first()) && (time < sess.last())) {
if (sess.channelExists(code)) {
return sess.SearchValue(code,time,square);
}
}
}
}
return 0;
}

View File

@ -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);
}