diff --git a/src/mathed/math_hullinset.C b/src/mathed/math_hullinset.C index 0114359321..361c241ea1 100644 --- a/src/mathed/math_hullinset.C +++ b/src/mathed/math_hullinset.C @@ -515,7 +515,11 @@ void MathHullInset::mutate(string const & newtype) } setType("eqnarray"); mutate(newtype); - } else { + } else if (newtype == "multline" || newtype == "gather") { + setType("multline"); + numbered(0, false); + mutate(newtype); + } else { MathGridInset::addCol(1); // split it "nicely" pos_type pos = firstRelOp(cell(0));