summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorStephen Silver <sasilver@yahoo.com>2008-07-28 14:56:51 +0000
committersasilver <sasilver@users.sourceforge.net>2008-07-28 14:56:51 +0000
commite44c064d8d7e6b4494e01dcb7f508ceca4c7b0f4 (patch)
tree6dbee7e3961b31c41da1920408e09cae2320d82f /src
parentKhmer translations updated (diff)
downloadinkscape-e44c064d8d7e6b4494e01dcb7f508ceca4c7b0f4.tar.gz
inkscape-e44c064d8d7e6b4494e01dcb7f508ceca4c7b0f4.zip
codedread's patch to fix editing of text with a title or description (see bug 238093).
(bzr r6438)
Diffstat (limited to 'src')
-rw-r--r--src/text-editing.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/text-editing.cpp b/src/text-editing.cpp
index b92d85b15..3c4b4da8e 100644
--- a/src/text-editing.cpp
+++ b/src/text-editing.cpp
@@ -1440,6 +1440,7 @@ static bool tidy_operator_empty_spans(SPObject **item)
the repeated strings will be merged by another operator. */
static bool tidy_operator_inexplicable_spans(SPObject **item)
{
+ if (*item && sp_repr_is_meta_element((*item)->repr)) return false;
if (SP_IS_STRING(*item)) return false;
if (is_line_break_object(*item)) return false;
TextTagAttributes *attrs = attributes_for_object(*item);