No space after inline math for text export (#9282)

This extra space was the result of the fix for #6094
(at 7e624928).
This commit is contained in:
Scott Kostyshak 2014-10-02 01:51:24 -04:00
parent 3b96c6e901
commit 5636906aee

View 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 << " ";
}
}
}