diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-09-02 10:02:46 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-09-02 12:05:09 +0200 |
commit | 1485bcc796dd8bd53762368ec4a1345ddb7cda72 (patch) | |
tree | 5189bf07ff97319a0cf02ef996d9c4fa2294f568 /desktop/source | |
parent | 51f312c1366d815f8ccfd68931edba664866df09 (diff) |
Resolves: tdf#126042 measure text width with the bold font it will render with
Change-Id: I81cc0351e652c632bd85efa6dacb36be66fcfb3c
Reviewed-on: https://gerrit.libreoffice.org/78385
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'desktop/source')
-rw-r--r-- | desktop/source/deployment/gui/dp_gui_extlistbox.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/source/deployment/gui/dp_gui_extlistbox.cxx b/desktop/source/deployment/gui/dp_gui_extlistbox.cxx index 6a7c87a6d3d0..1f74612e1729 100644 --- a/desktop/source/deployment/gui/dp_gui_extlistbox.cxx +++ b/desktop/source/deployment/gui/dp_gui_extlistbox.cxx @@ -444,11 +444,11 @@ void ExtensionBox_Impl::DrawRow(vcl::RenderContext& rRenderContext, const tools: nMaxTitleWidth -= nLinkWidth + (2 * SPACE_BETWEEN); } long aVersionWidth = rRenderContext.GetTextWidth(rEntry->m_sVersion); - long aTitleWidth = rRenderContext.GetTextWidth(rEntry->m_sTitle) + (aTextHeight / 3); aPos = rRect.TopLeft() + Point(ICON_OFFSET, TOP_OFFSET); rRenderContext.SetFont(aBoldFont); + long aTitleWidth = rRenderContext.GetTextWidth(rEntry->m_sTitle) + (aTextHeight / 3); if (aTitleWidth > nMaxTitleWidth - aVersionWidth) { aTitleWidth = nMaxTitleWidth - aVersionWidth - (aTextHeight / 3); |