From d6c4324f6c91cd8f8eaaf10b3d7695882f93a18d Mon Sep 17 00:00:00 2001 From: Jacek Jendrzej Date: Thu, 3 Nov 2016 12:17:11 +0100 Subject: [PATCH] src/gui/widget/textbox.cpp try to fix text lines per page --- src/gui/widget/textbox.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/gui/widget/textbox.cpp b/src/gui/widget/textbox.cpp index 7120b7a16..5651d302c 100644 --- a/src/gui/widget/textbox.cpp +++ b/src/gui/widget/textbox.cpp @@ -311,6 +311,8 @@ void CTextBox::initFramesRel(void) m_cFrameTextRel.iWidth = m_cFrame.iWidth - m_cFrameScrollRel.iWidth; m_nLinesPerPage = std::max(1, (m_cFrameTextRel.iHeight - (2*text_Vborder_width)) / m_nFontTextHeight); + if((m_cFrameTextRel.iHeight - (2*text_Vborder_width)) % m_nFontTextHeight) + m_nLinesPerPage += 1; #if 0 TRACE_1("Frames\r\n\tScren:\t%3d,%3d,%3d,%3d\r\n\tMain:\t%3d,%3d,%3d,%3d\r\n\tText:\t%3d,%3d,%3d,%3d \r\n\tScroll:\t%3d,%3d,%3d,%3d \r\n", @@ -466,6 +468,8 @@ void CTextBox::refreshTextLineArray(void) } m_nLinesPerPage = std::max(1, (m_cFrameTextRel.iHeight - (2*text_Vborder_width)) / m_nFontTextHeight); + if((m_cFrameTextRel.iHeight - (2*text_Vborder_width)) % m_nFontTextHeight) + m_nLinesPerPage += 1; m_nNrOfPages = ((m_nNrOfLines-1) / m_nLinesPerPage) + 1; if(m_nCurrentPage >= m_nNrOfPages)