Session bar now shows "no sessions present" if there are not sessions, instead of showing last days's sessions.

This commit is contained in:
Seeker4 2019-05-19 17:44:10 -07:00
parent f5e9b2d3da
commit ff2bdf3d01

View File

@ -1557,10 +1557,11 @@ void Daily::Load(QDate date)
const int maxcolors=sizeof(cols)/sizeof(QColor);
QList<Session *>::iterator i;
sessionbar->clear(); // clear sessionbar as some days don't have sessions
if (cpap) {
int c=0;
sessionbar->clear();
for (i=day->begin();i!=day->end();++i) {
Session * s=*i;
if ((*s).type() == MT_CPAP)