From 1e26302340372be34e50ca61c33d7682985ee635 Mon Sep 17 00:00:00 2001 From: 0xFEEDC0DE64 Date: Sun, 21 Nov 2021 01:09:23 +0100 Subject: [PATCH] Fixed headers missing in graph display --- src/graphdisplay.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/graphdisplay.h b/src/graphdisplay.h index c605688..f911f80 100644 --- a/src/graphdisplay.h +++ b/src/graphdisplay.h @@ -67,6 +67,8 @@ void GraphDisplay::initScreen() template void GraphDisplay::redraw() { + Base::redraw(); + m_graph.redraw(static_cast &>(*this).getBuffers()); } }