]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetFoot.cpp
Output a parbreak after a command.
[lyx.git] / src / insets / InsetFoot.cpp
index 39a1fd7eea05538d18c3cff92e214541fe6678b1..bfb637e49831dfc8f082644045539ab85a82f6a5 100644 (file)
@@ -68,7 +68,7 @@ void InsetFoot::addToToc(DocIterator const & cpit, bool output_active) const
 
        Toc & toc = buffer().tocBackend().toc("footnote");
        docstring str = custom_label_ + ": ";
-       text().forToc(str, TOC_ENTRY_LENGTH);
+       text().forOutliner(str, TOC_ENTRY_LENGTH);
        toc.push_back(TocItem(pit, 0, str, output_active, toolTipText(docstring(), 3, 60)));
        // Proceed with the rest of the inset.
        InsetFootlike::addToToc(cpit, output_active);
@@ -80,7 +80,7 @@ docstring InsetFoot::toolTip(BufferView const & bv, int x, int y) const
        if (isOpen(bv))
                // this will give us something useful if there is no button
                return InsetCollapsable::toolTip(bv, x, y);
-       return toolTipText(custom_label_);
+       return toolTipText(custom_label_+ ": ");
 }