From: Georg Baum Date: Wed, 23 Mar 2011 21:05:44 +0000 (+0000) Subject: Fix part 1 of bug #7351 X-Git-Tag: 2.0.0~448 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=dd23151da9e4d448eaf654a2a07fe6bcbfb120bf;p=features.git Fix part 1 of bug #7351 git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38017 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/mathed/InsetMathHull.cpp b/src/mathed/InsetMathHull.cpp index e49f8e1d57..33de93e613 100644 --- a/src/mathed/InsetMathHull.cpp +++ b/src/mathed/InsetMathHull.cpp @@ -1596,7 +1596,7 @@ bool InsetMathHull::getStatus(Cursor & cur, FuncRequest const & cmd, // LABEL_INSERT? bool const enable = (type_ == hullMultline) ? (nrows() - 1 == cur.row()) - : display() != Inline && nrows() > 1; + : display() != Inline; row_type const r = (type_ == hullMultline) ? nrows() - 1 : cur.row(); status.setEnabled(enable); status.setOnOff(enable && numbered(r));