From 82fca3a08d40f5a45d4f86a356d1bd55caeb7cf4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Uwe=20St=C3=B6hr?= Date: Tue, 15 Apr 2008 23:44:23 +0000 Subject: [PATCH] InsetMathNest.cpp: fix bug 4720 for trunk as well git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24287 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/mathed/InsetMathNest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mathed/InsetMathNest.cpp b/src/mathed/InsetMathNest.cpp index 6a5f44ce55..80fa025b3f 100644 --- a/src/mathed/InsetMathNest.cpp +++ b/src/mathed/InsetMathNest.cpp @@ -1076,7 +1076,7 @@ void InsetMathNest::doDispatch(Cursor & cur, FuncRequest & cmd) MathData ar; asArray(cmd.argument(), ar); if (ar.size() == 1 && ar[0]->asNestInset() - && ar[0]->asNestInset()->nargs()) + && ar[0]->asNestInset()->nargs() > 1) handleNest(cur, ar[0]); else cur.niceInsert(cmd.argument()); -- 2.39.5