From 1732e5458bfd1453b16a182b324dcf4c8f918174 Mon Sep 17 00:00:00 2001 From: Enrico Forestieri Date: Mon, 24 Dec 2007 02:36:41 +0000 Subject: [PATCH] Try to improve maintainability by separately checking for the gather environment. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22288 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/mathed/InsetMathHull.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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'; } -- 2.39.5