From ff2bdf3d01c7865f08f395695e52b6d9e7bd65ac Mon Sep 17 00:00:00 2001 From: Seeker4 Date: Sun, 19 May 2019 17:44:10 -0700 Subject: [PATCH] Session bar now shows "no sessions present" if there are not sessions, instead of showing last days's sessions. --- oscar/daily.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/oscar/daily.cpp b/oscar/daily.cpp index 0866b908..17bcabf1 100644 --- a/oscar/daily.cpp +++ b/oscar/daily.cpp @@ -1557,10 +1557,11 @@ void Daily::Load(QDate date) const int maxcolors=sizeof(cols)/sizeof(QColor); QList::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)