diff --git a/Graphs/gLineChart.cpp b/Graphs/gLineChart.cpp index 5ea43db7..97315229 100644 --- a/Graphs/gLineChart.cpp +++ b/Graphs/gLineChart.cpp @@ -207,14 +207,14 @@ void gLineChart::Plot(gGraphWindow & w,float scrx,float scry) bool firstpx=true; for (int i=idx;i=sam) i-=sam; // Start with the previous sample (which will be in clipping area) - } + if (first) { + first=false; + if (i>=sam) i-=sam; // Start with the previous sample (which will be in clipping area) + } - if (point[i].x() > maxx) done=true; // Let this iteration finish.. (This point will be in far clipping) + if (point[i].x() > maxx) done=true; // Let this iteration finish.. (This point will be in far clipping) px=1+((point[i].x() - minx) * xmult); // Scale the time scale X to pixel scale X @@ -245,13 +245,6 @@ void gLineChart::Plot(gGraphWindow & w,float scrx,float scry) lastpx=start_px+px; lastpy=start_py+py; } else { - // Just clip ugly in accel mode.. Too darn complicated otherwise - /* if (px<0) { - px=0; - } - if (px>width) { - px=width; - } */ // In accel mode, each pixel has a min/max Y value. // m_drawlist's index is the pixel index for the X pixel axis. @@ -260,10 +253,9 @@ void gLineChart::Plot(gGraphWindow & w,float scrx,float scry) int y1=1+(jy-miny)*ymult; int y2=1+(-jy-miny)*ymult; - //py=1+((point[i].m_y - miny) * ymult); // Same for Y scale - int z=round(px); + int z=floor(px); // Hmmm... round may screw this up. if (zmaxz) maxz=z; // maxz=Last pixel @@ -284,6 +276,7 @@ void gLineChart::Plot(gGraphWindow & w,float scrx,float scry) vertarray[vertcnt++]=start_py+m_drawlist[i].x(); vertarray[vertcnt++]=start_px+i+1; vertarray[vertcnt++]=start_py+m_drawlist[i].y(); + #if defined(EXTRA_ASSERTS) assert(vertcnt layers; QString m_title; int m_scrX; diff --git a/daily.cpp b/daily.cpp index 319c490d..6eecf72a 100644 --- a/daily.cpp +++ b/daily.cpp @@ -210,7 +210,7 @@ Daily::Daily(QWidget *parent,QGLContext *context) : l->color.push_back(QColor(0x40,0x40,0x40,255)); l->color.push_back(QColor(0x60,0xff,0x60,0xff)); //80ff80 G_AHI->AddLayer(l); - G_AHI->SetDrawBackground(false); + G_AHI->SetGradientBackground(false); //G_AHI->setMaximumSize(2000,30); //TAP->setMaximumSize(2000,30); NoData=new QLabel(tr("No CPAP Data"),gSplitter); @@ -258,10 +258,8 @@ Daily::Daily(QWidget *parent,QGLContext *context) : gSplitter->setChildrenCollapsible(true); // We set this per widget.. - for (int i=1;icount();i++) - gSplitter->setCollapsible(i,true); - gSplitter->setCollapsible(0,false); - gSplitter->setCollapsible(1,false); + gSplitter->setCollapsible(gSplitter->indexOf(SF),false); + gSplitter->setStretchFactor(gSplitter->indexOf(SF),0); ui->graphSizer->layout(); QTextCharFormat format = ui->calendar->weekdayTextFormat(Qt::Saturday);