From: Jürgen Spitzmüller Date: Fri, 29 Oct 2010 17:02:01 +0000 (+0000) Subject: fix #6998. Center alignment is the default, also with multirow. X-Git-Tag: 2.0.0~2186 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=33817843183effddca05c8b61447f2dd49830e8d;p=features.git fix #6998. Center alignment is the default, also with multirow. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@35912 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/insets/InsetTabular.cpp b/src/insets/InsetTabular.cpp index dbd0ae3d1a..6c4ff1a96a 100644 --- a/src/insets/InsetTabular.cpp +++ b/src/insets/InsetTabular.cpp @@ -4279,7 +4279,6 @@ bool InsetTabular::getStatus(Cursor & cur, FuncRequest const & cmd, case Tabular::M_ALIGN_CENTER: flag = false; case Tabular::ALIGN_CENTER: - status.setEnabled(!tabular.isMultiRow(cur.idx())); status.setOnOff(tabular.getAlignment(cur.idx(), flag) == LYX_ALIGN_CENTER); break;