GL Blend fix

This commit is contained in:
Mark Watkins 2011-12-28 17:09:35 +10:00
parent 381209716b
commit deec2660c4
2 changed files with 6 additions and 1 deletions

View File

@ -21,7 +21,7 @@ gLineChart::gLineChart(ChannelID code,QColor col,bool square_plot, bool disable_
addGLBuf(lines=new GLShortBuffer(100000,GL_LINES));
lines->setColor(col);
lines->setAntiAlias(true);
lines->setBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC1_ALPHA);
lines->setBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
}
gLineChart::~gLineChart()
{

View File

@ -1311,6 +1311,11 @@ void Oximetry::on_saveButton_clicked()
if (m->SessionExists(session->session())) {
m->sessionlist.erase(m->sessionlist.find(session->session()));
}
QString path=PROFILE.Get(m->properties[STR_PROP_Path])+QString().sprintf("%08x",session->session());
QString f1=path+".000";
QString f2=path+".001";
QFile::remove(f1);
QFile::remove(f2);
// Forgetting to reset the session ID sucks, as it will delete sessions you don't want to delete..
session->SetSessionID(qint64(session->first())/1000L);