]> git.lyx.org Git - lyx.git/commitdiff
No space after inline math for text export (#9282)
authorScott Kostyshak <skostysh@lyx.org>
Thu, 2 Oct 2014 05:51:24 +0000 (01:51 -0400)
committerScott Kostyshak <skostysh@lyx.org>
Wed, 15 Oct 2014 23:21:18 +0000 (19:21 -0400)
This extra space was the result of the fix for #6094
(at 7e624928).

src/Paragraph.cpp

index eb239edbe04326167be6b1dd69c74d0fda162b9a..103428a2d5dbdc006684cc4ca7dd76098dbb11ee 100644 (file)
@@ -3382,8 +3382,6 @@ docstring Paragraph::asString(pos_type beg, pos_type end, int options, const Out
                                getInset(i)->plaintext(os, *runparams);
                        } else {
                                getInset(i)->toString(os);
-                               if (getInset(i)->asInsetMath())
-                                       os << " ";
                        }
                }
        }