diff options
| author | Nicolas Dufour <nicoduf@yahoo.fr> | 2014-01-04 15:16:25 +0000 |
|---|---|---|
| committer | JazzyNico <nicoduf@yahoo.fr> | 2014-01-04 15:16:25 +0000 |
| commit | 8266a65f6bee33b433ec1c67be4a4f840588e99e (patch) | |
| tree | 7682dcb2e5b1fa25ca318aaba86732ec8723cf3f /src/text-chemistry.cpp | |
| parent | Fix for Bug #1265556 (plain svg export is broken for filter). (diff) | |
| download | inkscape-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/text-chemistry.cpp')
| -rw-r--r-- | src/text-chemistry.cpp | 1 |
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); } } |
