| commit | ca79c018f1e8bd0e1f42e3cef4b4f5893ef2e47f | [log] |
|---|---|---|
| author | Caolán McNamara <caolanm@redhat.com> | Tue Feb 25 15:55:24 2020 +0000 |
| committer | Caolán McNamara <caolanm@redhat.com> | Wed Feb 26 09:51:11 2020 +0100 |
| tree | c39795bf83ca2da0664884c36c383f455a3a103d | |
| parent | d8c7864407249fd1ed69713dfdf4fa533a9efb0b [diff] |
tdf#130925 use the maximum document line number for the width calculation not the max line number in the range currently getting rendered Change-Id: I447e4152ef6a1ec327a95a8260d1616940e5d6c4 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/89467 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
diff --git a/basctl/source/basicide/linenumberwindow.cxx b/basctl/source/basicide/linenumberwindow.cxx index 79c1241..4fa6ebf 100644 --- a/basctl/source/basicide/linenumberwindow.cxx +++ b/basctl/source/basicide/linenumberwindow.cxx
@@ -73,7 +73,8 @@ void LineNumberWindow::Paint( vcl::RenderContext& rRenderContext, const tools::R // reserve enough for 3 digit minimum, with a bit to spare for comfort m_nWidth = m_nBaseWidth * 3 + m_nBaseWidth / 2; sal_uInt32 i = (nEndLine + 1) / 1000; auto nMaxLineNumber = std::max(nEndLine, txtEngine->GetParagraphCount() + 1); sal_uInt32 i = (nMaxLineNumber + 1) / 1000; while (i) { i /= 10;