From 5b047af0e39b8564c1494440d168f7202c8b7a1f Mon Sep 17 00:00:00 2001 From: Seeker4 Date: Tue, 2 Jul 2019 08:01:20 -0700 Subject: [PATCH] After preference setting, update font of timestamp at bottom of graphs --- oscar/daily.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/oscar/daily.cpp b/oscar/daily.cpp index 8d6f7b4b..847c4e3c 100644 --- a/oscar/daily.cpp +++ b/oscar/daily.cpp @@ -1907,6 +1907,9 @@ void Daily::RedrawGraphs() schema::channel[CPAP_Leak].setUpperThreshold(0); // switch it off } + QFont appFont = QApplication::font(); + dateDisplay->setFont(appFont); + GraphView->redraw(); }