]> git.lyx.org Git - features.git/commitdiff
Try to improve maintainability by separately checking for the
authorEnrico Forestieri <forenr@lyx.org>
Mon, 24 Dec 2007 02:36:41 +0000 (02:36 +0000)
committerEnrico Forestieri <forenr@lyx.org>
Mon, 24 Dec 2007 02:36:41 +0000 (02:36 +0000)
gather environment.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22288 a592a061-630c-0410-9148-cb99ea01b6c8

src/mathed/InsetMathHull.cpp

index 2ad48d8fa80278ef61d3811e45b0b55375771bd3..b6817648dae3cf372a8f57107288e49218fcbb88 100644 (file)
@@ -231,7 +231,9 @@ char InsetMathHull::defaultColAlign(col_type col)
 {
        if (type_ == hullEqnArray)
                return "rcl"[col];
-       if (type_ >= hullAlign && type_ != hullGather)
+       if (type_ == hullGather)
+               return 'c';
+       if (type_ >= hullAlign)
                return "rl"[col & 1];
        return 'c';
 }