From 6dd3bbdb86f3f8ae9a22ee996a84817cb49c376f Mon Sep 17 00:00:00 2001 From: JuanJakobo <34421964+JuanJakobo@users.noreply.github.com> Date: Thu, 22 Oct 2020 22:11:36 +0200 Subject: [PATCH] bugfix: header text disappears on page change --- src/ui/listView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/listView.cpp b/src/ui/listView.cpp index b302627..09ebfec 100644 --- a/src/ui/listView.cpp +++ b/src/ui/listView.cpp @@ -102,7 +102,7 @@ int ListView::listClicked(int x, int y) { if (_page > 1) { - FillAreaRect(_contentRect, WHITE); + FillArea(_contentRect->x,_contentRect->y+_headerHeight, _contentRect->w, _contentRect->h, WHITE); if (_shownPage >= _page) {