diff --git a/src/mathed/InsetMathHull.cpp b/src/mathed/InsetMathHull.cpp index 2ad48d8fa8..b6817648da 100644 --- a/src/mathed/InsetMathHull.cpp +++ b/src/mathed/InsetMathHull.cpp @@ -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'; }