From 94118b865e242dc4003967433fe41c7a29e40e98 Mon Sep 17 00:00:00 2001 From: Jean-Marc Lasgouttes Date: Thu, 7 Dec 2023 17:21:45 +0100 Subject: [PATCH] Disable properly math inset locking It is not clear whether this feature was once documented and used (it would have been 20 years ago). It is mostly disable now, but there was a remaining bit that is annoying now. I'll try to restore this later. --- src/mathed/InsetMathNest.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/mathed/InsetMathNest.cpp b/src/mathed/InsetMathNest.cpp index 901cc36778..37bbd40008 100644 --- a/src/mathed/InsetMathNest.cpp +++ b/src/mathed/InsetMathNest.cpp @@ -1147,6 +1147,8 @@ void InsetMathNest::doDispatch(Cursor & cur, FuncRequest & cmd) } break; +#if 0 +// FIXME: resurrect this later // 'Locks' the math inset. A 'locked' math inset behaves as a unit // that is traversed by a single /. case LFUN_INSET_TOGGLE: @@ -1154,6 +1156,7 @@ void InsetMathNest::doDispatch(Cursor & cur, FuncRequest & cmd) lock(!lock()); cur.popForward(); break; +#endif case LFUN_SELF_INSERT: // special case first for big delimiters -- 2.39.5