From 4b882d1b7c2928cfb3b4a980e5c5ae96531c6a2e Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Mon, 11 Aug 2014 16:21:05 +1000 Subject: [PATCH] Forgot to call Reset graph layout in overview --- sleepyhead/Graphs/gLineChart.cpp | 3 +-- sleepyhead/overview.cpp | 1 + 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sleepyhead/Graphs/gLineChart.cpp b/sleepyhead/Graphs/gLineChart.cpp index 38eb733e..efccbc80 100644 --- a/sleepyhead/Graphs/gLineChart.cpp +++ b/sleepyhead/Graphs/gLineChart.cpp @@ -1006,8 +1006,7 @@ void gLineChart::paint(QPainter &painter, gGraph &w, const QRegion ®ion) float f = float(cnt) / hours; // / (sum / 3600.0); QString txt = QObject::tr("Duration %1:%2:%3").arg(h,2,10,QChar('0')).arg(m,2,10,QChar('0')).arg(s,2,10,QChar('0')) + " "+ QObject::tr("AHI %1").arg(f,0,'f',2); - painter.setPen(Qt::black); - painter.drawText(left,top-4,txt); + w.renderText(txt,left,top-4); } painter.setRenderHint(QPainter::Antialiasing, false); diff --git a/sleepyhead/overview.cpp b/sleepyhead/overview.cpp index a5027b60..10c59122 100644 --- a/sleepyhead/overview.cpp +++ b/sleepyhead/overview.cpp @@ -306,6 +306,7 @@ Overview::Overview(QWidget *parent, gGraphView *shared) : nll->addSlice(CPAP_LargeLeak, schema::channel[CPAP_LargeLeak].defaultColor(), ST_SPH); // <--- The code to the previous marker is crap + GraphView->resetLayout(); GraphView->LoadSettings("Overview"); //no trans AHI->setPinned(false); ui->rangeCombo->setCurrentIndex(6);