From: Jean-Marc Lasgouttes Date: Mon, 1 Jul 2019 10:05:31 +0000 (+0200) Subject: Fixup 17571104: really avoid empty numbers in toc X-Git-Tag: 2.3.4~91 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=c047dc64bf83f146b9e1e3d1e91c6f0a69ba33f1;p=features.git Fixup 17571104: really avoid empty numbers in toc For some reason, I missed this one when trying to fix the bug. Fixes bug #11423. (cherry picked from commit 5a22b2e391437b6855ed305b468bdbd61735bd0a) --- diff --git a/src/mathed/InsetMathHull.cpp b/src/mathed/InsetMathHull.cpp index 4f9737b78e..f5fb039a69 100644 --- a/src/mathed/InsetMathHull.cpp +++ b/src/mathed/InsetMathHull.cpp @@ -213,7 +213,7 @@ InsetMathHull::InsetMathHull(Buffer * buf) InsetMathHull::InsetMathHull(Buffer * buf, HullType type) - : InsetMathGrid(buf, getCols(type), 1), type_(type), numbered_(1, NUMBER), + : InsetMathGrid(buf, getCols(type), 1), type_(type), numbered_(1, NONUMBER), numbers_(1, empty_docstring()), label_(1, dummy_pointer), preview_(new RenderPreview(this)) { diff --git a/status.23x b/status.23x index 5580debeca..759309196d 100644 --- a/status.23x +++ b/status.23x @@ -79,6 +79,9 @@ Avoid using text mode for unicode symbols representable in math mode (bug 9616). - Correctly close a language opened in a branch inset (bug 9633). +- Fix additional problem with display of inline equations in outliner + (bug 11423). + * INTERNALS