update search highlights when paging left/right. fix #791

This commit is contained in:
2025-08-26 16:11:10 -05:00
committed by Celtic Minstrel
parent 75f44a0ad3
commit 5d8b31ed11

View File

@@ -143,6 +143,8 @@ bool cStringChoice::onLeft(){
if(page == 0) page = lastPage();
else page--;
fillPage();
clearHighlights();
highlightSearch();
return true;
}
@@ -154,6 +156,8 @@ bool cStringChoice::onRight(){
if(page == lastPage()) page = 0;
else page++;
fillPage();
clearHighlights();
highlightSearch();
return true;
}