Show indexing text when indexing

This commit is contained in:
Dave Allie
2025-12-05 21:12:15 +11:00
parent 12d28e2148
commit e08bac2e10
3 changed files with 17 additions and 4 deletions

View File

@@ -120,9 +120,8 @@ void EpdRenderer::clearScreen(const bool black) const {
void EpdRenderer::flushDisplay(const bool partialUpdate) const { display->display(partialUpdate); }
void EpdRenderer::flushArea(int x, int y, int width, int height) const {
// TODO: Fix
display->display(true);
void EpdRenderer::flushArea(const int x, const int y, const int width, const int height) const {
display->displayWindow(x, y, width, height);
}
int EpdRenderer::getPageWidth() const { return display->width() - marginLeft - marginRight; }