summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLászló Németh <laszlo.nemeth@collabora.com>2015-08-17 09:51:38 +0200
committerCaolán McNamara <caolanm@redhat.com>2015-08-17 12:28:54 +0000
commit758b4c7feaca5ecc2da6b574919d3a5ad667a84c (patch)
tree1ee38c8342333fb19cbcc6d5587a1873486f8ee6
parent3d6b9197d2b8aa690c5afaa920a28b1d9f0407c0 (diff)
tdf#93114 insert character: add missing recalculate for font selection
Fixing missing characters (only characters of the basic Control font showed by Insert special character dialog) and freezing (when LibreOffice tried to replace hundred of characters [missing from the chosen font] during scrolling in the insert special character dialog). Change-Id: I8fd5bd233f16572eb2b740a8f8e7e8608c19d06f Reviewed-on: https://gerrit.libreoffice.org/17793 Reviewed-by: Eike Rathke <erack@redhat.com> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r--svx/source/dialog/charmap.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/svx/source/dialog/charmap.cxx b/svx/source/dialog/charmap.cxx
index 6a52644bad22..3d616e989742 100644
--- a/svx/source/dialog/charmap.cxx
+++ b/svx/source/dialog/charmap.cxx
@@ -340,6 +340,7 @@ void SvxShowCharSet::Paint( vcl::RenderContext& rRenderContext, const Rectangle&
void SvxShowCharSet::SetFont( const vcl::Font& rFont )
{
Control::SetFont(rFont);
+ mbRecalculateFont = true;
Invalidate();
}