From: Enrico Forestieri Date: Mon, 5 Jul 2010 12:31:18 +0000 (+0000) Subject: Correct refinement fix for #6595. The problem was not adding \\ to the last X-Git-Tag: 2.0.0~3062 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=7049447fd70cc14d30deb641e76550c010a3e29f;p=features.git Correct refinement fix for #6595. The problem was not adding \\ to the last empty line of substack, tabular and xymatrix, but not calling delEmptyLastRow for them. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@34763 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/mathed/MathParser.cpp b/src/mathed/MathParser.cpp index b4d4102bfb..bd66b0b5e2 100644 --- a/src/mathed/MathParser.cpp +++ b/src/mathed/MathParser.cpp @@ -249,7 +249,8 @@ void delEmptyLastRow(InsetMathGrid & grid) bool innerHull(docstring const & name) { return name == "array" || name == "cases" || name == "aligned" - || name == "alignedat" || name == "gathered" || name == "split"; + || name == "alignedat" || name == "gathered" || name == "split" + || name == "tabular"; } @@ -1694,6 +1695,11 @@ bool Parser::parse1(InsetMathGrid & grid, unsigned flags, else if (t.cs() == "substack") { cell->push_back(createInsetMath(t.cs(), buf)); parse2(cell->back(), FLAG_ITEM, mode, false); + // Delete empty last row if present + InsetMathGrid & subgrid = + *(cell->back().nucleus()->asGridInset()); + if (subgrid.nrows() > 1) + delEmptyLastRow(subgrid); } else if (t.cs() == "xymatrix") { @@ -1702,6 +1708,11 @@ bool Parser::parse1(InsetMathGrid & grid, unsigned flags, os << getToken().asInput(); cell->push_back(createInsetMath(t.cs() + os.str(), buf)); parse2(cell->back(), FLAG_ITEM, mode, false); + // Delete empty last row if present + InsetMathGrid & subgrid = + *(cell->back().nucleus()->asGridInset()); + if (subgrid.nrows() > 1) + delEmptyLastRow(subgrid); } else if (t.cs() == "framebox" || t.cs() == "makebox") {