Fixed headers missing in graph display

This commit is contained in:
2021-11-21 01:09:23 +01:00
parent db066968d2
commit 1e26302340

View File

@ -67,6 +67,8 @@ void GraphDisplay<COUNT>::initScreen()
template<size_t COUNT> template<size_t COUNT>
void GraphDisplay<COUNT>::redraw() void GraphDisplay<COUNT>::redraw()
{ {
Base::redraw();
m_graph.redraw(static_cast<const GraphAccessorInterface<COUNT> &>(*this).getBuffers()); m_graph.redraw(static_cast<const GraphAccessorInterface<COUNT> &>(*this).getBuffers());
} }
} }