]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetMarginal.cpp
Limit ligature protection to quote ligature chars
[lyx.git] / src / insets / InsetMarginal.cpp
index 9aba39ad8a196c574a89dbc4503893650f693133..1c1df328e96ba4e31c07d12ba9c585e59ccbdfeb 100644 (file)
@@ -58,13 +58,10 @@ void InsetMarginal::addToToc(DocIterator const & cpit, bool output_active,
        DocIterator pit = cpit;
        pit.push_back(CursorSlice(const_cast<InsetMarginal &>(*this)));
 
-       docstring tooltip;
-       text().forOutliner(tooltip, TOC_ENTRY_LENGTH);
-       docstring const str = tooltip;
-       tooltip = support::wrapParas(tooltip, 0, 60, 2);
-       
+       docstring str;
+       text().forOutliner(str, TOC_ENTRY_LENGTH);
        std::shared_ptr<Toc> toc = buffer().tocBackend().toc("marginalnote");
-       toc->push_back(TocItem(pit, 0, str, output_active, tooltip));
+       toc->push_back(TocItem(pit, 0, str, output_active));
 
        // Proceed with the rest of the inset.
        InsetFootlike::addToToc(cpit, output_active, utype);