fix bug 2050

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@10514 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Georg Baum 2005-10-03 12:16:34 +00:00
parent fe1c0c435b
commit aebef8f685
2 changed files with 5 additions and 5 deletions

View File

@ -1,3 +1,7 @@
2005-10-02 Georg Baum <Georg.Baum@post.rwth-aachen.de>
* math_kerninset.C (write): write width, not 0 (fixes bug 2050)
2005-10-03 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
* math_nestinset.C (doDispatch): use recordUndoInset when deleting whole

View File

@ -54,11 +54,7 @@ void MathKernInset::draw(PainterInfo &, int, int) const
void MathKernInset::write(WriteStream & os) const
{
#ifdef WITH_WARNINGS
#warning this crashs on startup!
#endif
//os << "\\kern" << wid_.asLatexString() << ' ';
os << "\\kern0mm ";
os << "\\kern" << wid_.asLatexString() << ' ';
}