]> git.lyx.org Git - features.git/commitdiff
Fix line break in tooltip
authorJuergen Spitzmueller <spitz@lyx.org>
Fri, 17 Aug 2018 08:32:57 +0000 (10:32 +0200)
committerJuergen Spitzmueller <spitz@lyx.org>
Fri, 17 Aug 2018 08:32:57 +0000 (10:32 +0200)
Fixes: #11252
src/insets/InsetBibtex.cpp

index d2e7284052dbf875ebfefe283a570d3ccb51e1b5..edf50f8787d820fe9f63f62b0e26e6133ae6cd4e 100644 (file)
@@ -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 += "<br />";
+                       tip += "<br />";
                        tip += _("Options: ") + getParam("biblatexopts");
                }
        }