From: Juergen Spitzmueller Date: Fri, 17 Aug 2018 08:32:57 +0000 (+0200) Subject: Fix line break in tooltip X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=bfe624a790c255cfa6f0a8f870fb026ebf14ff20;p=features.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"); } }