1
0
mirror of git://projects.qi-hardware.com/gmenu2x.git synced 2024-06-30 21:24:32 +03:00

Correct the viewport area in TextManualDialog

Hardcoded coordinates now follow gmenu2x's usual content area rules.

Copy-pasted from TextDialog.
This commit is contained in:
Nebuleon Fumika 2014-08-10 04:56:00 +00:00 committed by Maarten ter Huurne
parent b833f59bb5
commit b3719d1331

View File

@ -92,7 +92,11 @@ void TextManualDialog::exec() {
ss >> spagecount;
string pageStatus;
const unsigned rowsPerPage = max(180u / gmenu2x->font->getLineSpacing(), 1u);
const int fontHeight = gmenu2x->font->getLineSpacing();
unsigned int contentY, contentHeight;
tie(contentY, contentHeight) = gmenu2x->getContentArea();
const unsigned rowsPerPage = max(contentHeight / fontHeight, 1u);
contentY += (contentHeight % fontHeight) / 2;
unsigned page = 0, firstRow = 0;
bool close = false;
@ -102,7 +106,7 @@ void TextManualDialog::exec() {
bg.blit(s,0,0);
writeSubTitle(s, pages[page].title);
drawText(pages[page].text, 42 /* TODO */, firstRow, rowsPerPage);
drawText(pages[page].text, contentY, firstRow, rowsPerPage);
ss.clear();
ss << page+1;