From 3971fdc674fc8addc4a1a17501e3b3133358e037 Mon Sep 17 00:00:00 2001 From: Aloshi Date: Sat, 29 Jun 2013 20:57:14 -0500 Subject: [PATCH] Fix last entry not showing (issue #90) --- src/components/TextListComponent.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/TextListComponent.h b/src/components/TextListComponent.h index 0aea6cea4..e5c16e2fd 100644 --- a/src/components/TextListComponent.h +++ b/src/components/TextListComponent.h @@ -117,7 +117,7 @@ void TextListComponent::onRender() //number of entries that can fit on the screen simultaniously int screenCount = (Renderer::getScreenHeight() - cutoff) / entrySize; - //screenCount -= 1; + screenCount -= 1; if((int)mRowVector.size() >= screenCount) {