Code

codedread's patch to fix editing of text with a title or description (see bug 238093).
authorsasilver <sasilver@users.sourceforge.net>
Mon, 28 Jul 2008 14:56:51 +0000 (14:56 +0000)
committersasilver <sasilver@users.sourceforge.net>
Mon, 28 Jul 2008 14:56:51 +0000 (14:56 +0000)
src/text-editing.cpp

index b92d85b15f03c8428464a3da065489f696335eb4..3c4b4da8e91e13f6f95fd62f8ecf3e63f3435a4f 100644 (file)
@@ -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);