Center rows in the gather environment.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_5_X@22279 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Enrico Forestieri 2007-12-23 02:10:14 +00:00
parent 7e1bc63285
commit fccbc1c6e0
2 changed files with 3 additions and 1 deletions

View File

@ -249,7 +249,7 @@ char InsetMathHull::defaultColAlign(col_type col)
{
if (type_ == hullEqnArray)
return "rcl"[col];
if (type_ >= hullAlign)
if (type_ >= hullAlign && type_ != hullGather)
return "rl"[col & 1];
return 'c';
}

View File

@ -75,6 +75,8 @@ What's new
- Fix the function "mark-on" (bug 2913).
- Fix rows alignment in the gather environment (part of bug 1497).
* DOCUMENTATION