From: Enrico Forestieri Date: Fri, 21 Dec 2007 23:15:54 +0000 (+0000) Subject: Center rows in the gather environment. X-Git-Tag: 1.6.10~6850 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=51a365d784a20711e37889d78ba3d168f43fcdf8;p=features.git Center rows in the gather environment. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22250 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/mathed/InsetMathHull.cpp b/src/mathed/InsetMathHull.cpp index 9a1afc0105..2ad48d8fa8 100644 --- a/src/mathed/InsetMathHull.cpp +++ b/src/mathed/InsetMathHull.cpp @@ -231,7 +231,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'; }