Fix line break in tooltip

Fixes: #11252
(cherry picked from commit 6d71b9b69a)
This commit is contained in:
Juergen Spitzmueller 2018-08-17 10:32:57 +02:00
parent 62abc4e751
commit 7356f37644
2 changed files with 3 additions and 2 deletions

View File

@ -227,8 +227,7 @@ docstring InsetBibtex::toolTip(BufferView const & /*bv*/, int /*x*/, int /*y*/)
tip += _("included in TOC");
}
if (!getParam("biblatexopts").empty()) {
if (toc)
tip += "<br />";
tip += "<br />";
tip += _("Options: ") + getParam("biblatexopts");
}
}

View File

@ -288,6 +288,8 @@ What's new
- Fix size policy of buffer combo in refs dialog (bug 9316).
- Fix line break in Bib(La)TeX tooltip (bug 11252).
* INTERNALS