Fix deletion of empty last row for \smallmatrix (part of bug #7484).

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38475 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Enrico Forestieri 2011-04-22 15:06:59 +00:00
parent 659d68713f
commit d4bcdae8d7

View File

@ -252,7 +252,7 @@ bool innerHull(docstring const & name)
return name == "array" || name == "cases" || name == "aligned"
|| name == "alignedat" || name == "gathered" || name == "split"
|| name == "subarray" || name == "tabular" || name == "matrix"
|| name.substr(1) == "matrix";
|| name == "smallmatrix" || name.substr(1) == "matrix";
}