From: Juergen Spitzmueller Date: Fri, 17 Aug 2018 08:32:57 +0000 (+0200) Subject: Fix line break in tooltip X-Git-Tag: lyx-2.4.0dev-acb2ca7b~3144 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=6d71b9b69a0166fbc95b8c356e355924b4b73ce0;p=lyx.git Fix line break in tooltip Fixes: #11252 --- diff --git a/src/insets/InsetBibtex.cpp b/src/insets/InsetBibtex.cpp index d2e7284052..edf50f8787 100644 --- a/src/insets/InsetBibtex.cpp +++ b/src/insets/InsetBibtex.cpp @@ -229,8 +229,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"); } }