From: Juergen Spitzmueller Date: Fri, 17 Aug 2018 08:32:57 +0000 (+0200) Subject: Fix line break in tooltip X-Git-Tag: 2.3.1~17 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=7356f3764470b35ce5cd9772eb4748e7bf70bb30;p=features.git Fix line break in tooltip Fixes: #11252 (cherry picked from commit 6d71b9b69a0166fbc95b8c356e355924b4b73ce0) --- diff --git a/src/insets/InsetBibtex.cpp b/src/insets/InsetBibtex.cpp index 4ecb522737..7ad93a0587 100644 --- a/src/insets/InsetBibtex.cpp +++ b/src/insets/InsetBibtex.cpp @@ -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 += "
"; + tip += "
"; tip += _("Options: ") + getParam("biblatexopts"); } } diff --git a/status.23x b/status.23x index e7b3b20dc2..4ed51506ba 100644 --- a/status.23x +++ b/status.23x @@ -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