summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLászló Németh <laszlo.nemeth@collabora.com>2015-08-17 09:51:38 +0200
committerLászló Németh <laszlo.nemeth@collabora.com>2015-08-17 09:59:02 +0200
commitab936a4e4277e248a64faa702d4e889f69527b3e (patch)
treefdeb180dcd2550405389303627806e2310285eef
parent7985e5245a57b284e370faccffcaab47ba137f3f (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
-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 7b47b53c3f04..730d120402b8 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();
}