]> git.lyx.org Git - features.git/commitdiff
Fix part 1 of bug #7351
authorGeorg Baum <Georg.Baum@post.rwth-aachen.de>
Wed, 23 Mar 2011 21:05:44 +0000 (21:05 +0000)
committerGeorg Baum <Georg.Baum@post.rwth-aachen.de>
Wed, 23 Mar 2011 21:05:44 +0000 (21:05 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38017 a592a061-630c-0410-9148-cb99ea01b6c8

src/mathed/InsetMathHull.cpp

index e49f8e1d577b3287a6368cbca18180ecab0adbef..33de93e6133ac51b5d19621988ff55e9dc029dfd 100644 (file)
@@ -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));