]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetFoot.cpp
InsetTabular.cpp: fix #6585 also for wrapped floats - thanks Vincent
[lyx.git] / src / insets / InsetFoot.cpp
index 79167d1dede98d680c20bb106ccc86a462527bb6..fd8038f4ee654fef029a6bb9b4892f464fbef4d5 100644 (file)
@@ -67,7 +67,7 @@ void InsetFoot::addToToc(DocIterator const & cpit)
        Toc & toc = buffer().tocBackend().toc("footnote");
        docstring str;
        str = custom_label_ + ": " + text().getPar(0).asString();
-       toc.push_back(TocItem(pit, 0, str));
+       toc.push_back(TocItem(pit, 0, str, toolTipText()));
        // Proceed with the rest of the inset.
        InsetFootlike::addToToc(cpit);
 }