]> git.lyx.org Git - lyx.git/commitdiff
Fixup 17571104: really avoid empty numbers in toc
authorJean-Marc Lasgouttes <lasgouttes@lyx.org>
Mon, 1 Jul 2019 10:05:31 +0000 (12:05 +0200)
committerRichard Kimberly Heck <rikiheck@lyx.org>
Sun, 7 Jul 2019 17:23:45 +0000 (13:23 -0400)
For some reason, I missed this one when trying to fix the bug.

Fixes bug #11423.

(cherry picked from commit 5a22b2e391437b6855ed305b468bdbd61735bd0a)

src/mathed/InsetMathHull.cpp
status.23x

index 4f9737b78e02479b045d5c1e53d59536af94fd28..f5fb039a69e8e69200ebe4267eb3e2364cd8893a 100644 (file)
@@ -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))
 {
index 5580debeca004bac4af5f69ba5990fa571bf82f0..759309196d63d87d11ce7139fdadcaafee584c7a 100644 (file)
@@ -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