From: Jean-Marc Lasgouttes Date: Wed, 15 Jul 2009 13:53:26 +0000 (+0000) Subject: comment out assertion enabled in r30540. It triggered when entering a math inset... X-Git-Tag: 2.0.0~6009 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=5d904d95e79449ddae3771da900e99d53b8e171e;p=features.git comment out assertion enabled in r30540. It triggered when entering a math inset with the mouse. I have not been able to understand why exactly git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@30602 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/insets/Inset.cpp b/src/insets/Inset.cpp index 58be78c951..baf72fc5fd 100644 --- a/src/insets/Inset.cpp +++ b/src/insets/Inset.cpp @@ -226,7 +226,7 @@ string insetName(InsetCode c) void Inset::dispatch(Cursor & cur, FuncRequest & cmd) { - LASSERT(cur.buffer() == &buffer(), return); + //LASSERT(cur.buffer() == &buffer(), return); cur.updateFlags(Update::Force | Update::FitCursor); cur.dispatched(); doDispatch(cur, cmd);