From 6d71b9b69a0166fbc95b8c356e355924b4b73ce0 Mon Sep 17 00:00:00 2001 From: Juergen Spitzmueller Date: Fri, 17 Aug 2018 10:32:57 +0200 Subject: [PATCH] Fix line break in tooltip Fixes: #11252 --- src/insets/InsetBibtex.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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"); } } -- 2.39.5