summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorNicolas Dufour <nicoduf@yahoo.fr>2014-01-04 15:16:25 +0000
committerJazzyNico <nicoduf@yahoo.fr>2014-01-04 15:16:25 +0000
commit8266a65f6bee33b433ec1c67be4a4f840588e99e (patch)
tree7682dcb2e5b1fa25ca318aaba86732ec8723cf3f /src
parentFix for Bug #1265556 (plain svg export is broken for filter). (diff)
downloadinkscape-8266a65f6bee33b433ec1c67be4a4f840588e99e.tar.gz
inkscape-8266a65f6bee33b433ec1c67be4a4f840588e99e.zip
Fix for bug #1057494 (Remove Manual Kerns hides the selected text).
Fixed bugs: - https://launchpad.net/bugs/1057494 (bzr r12880)
Diffstat (limited to 'src')
-rw-r--r--src/text-chemistry.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/text-chemistry.cpp b/src/text-chemistry.cpp
index 532d19e02..aa2d81427 100644
--- a/src/text-chemistry.cpp
+++ b/src/text-chemistry.cpp
@@ -246,6 +246,7 @@ text_remove_all_kerns_recursively(SPObject *o)
for (SPObject *i = o->firstChild(); i != NULL; i = i->getNext()) {
text_remove_all_kerns_recursively(i);
+ i->requestDisplayUpdate(SP_OBJECT_MODIFIED_FLAG | SP_TEXT_LAYOUT_MODIFIED_FLAG);
}
}