diff --git a/sleepyhead/Graphs/gGraphView.cpp b/sleepyhead/Graphs/gGraphView.cpp index 335ef182..1c55114f 100644 --- a/sleepyhead/Graphs/gGraphView.cpp +++ b/sleepyhead/Graphs/gGraphView.cpp @@ -274,7 +274,7 @@ gGraphView::gGraphView(QWidget *parent, gGraphView *shared) redrawtimer = new QTimer(this); //redrawtimer->setInterval(80); //redrawtimer->start(); - connect(redrawtimer, SIGNAL(timeout()), SLOT(updateGL())); + connect(redrawtimer, SIGNAL(timeout()), SLOT(repaint())); //cubeimg.push_back(images["brick"]); //cubeimg.push_back(images[""]); @@ -1736,7 +1736,7 @@ void gGraphView::keyPressEvent(QKeyEvent *event) m_offsetY -= PROFILE.appearance->graphHeight() * 3 * m_scaleY; m_scrollbar->setValue(m_offsetY); m_offsetY = m_scrollbar->value(); - repaint(rect()); + repaint(); return; } else if (event->key() == Qt::Key_PageDown) { m_offsetY += PROFILE.appearance->graphHeight() * 3 * m_scaleY; //PROFILE.appearance->graphHeight(); @@ -1745,7 +1745,7 @@ void gGraphView::keyPressEvent(QKeyEvent *event) m_scrollbar->setValue(m_offsetY); m_offsetY = m_scrollbar->value(); - repaint(rect()); + repaint(); return; // redraw(); } @@ -2008,9 +2008,10 @@ int gGraphView::visibleGraphs() return cnt; } + void gGraphView::redraw() { if (!m_inAnimation) { - repaint(rect()); + repaint(); } } diff --git a/sleepyhead/preferencesdialog.ui b/sleepyhead/preferencesdialog.ui index d6664837..339f3cad 100644 --- a/sleepyhead/preferencesdialog.ui +++ b/sleepyhead/preferencesdialog.ui @@ -51,7 +51,7 @@ - 1 + 0 @@ -346,7 +346,7 @@ SleepyHead can keep a copy of this data if you ever need to reinstall. (Highly recomended, unless your short on disk space or don't care about the graph data) - Create SD Card Backups during Import (only for ResMed so far, highly recommended) + Create SD Card Backups during Import (This is fairly important for ResMed and FP ICON)