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 &region)
         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);