commit 7356f3764470b35ce5cd9772eb4748e7bf70bb30
Author: Juergen Spitzmueller <[email protected]>
Date: Fri Aug 17 10:32:57 2018 +0200
Fix line break in tooltip
Fixes: #11252
(cherry picked from commit 6d71b9b69a0166fbc95b8c356e355924b4b73ce0)
---
src/insets/InsetBibtex.cpp | 3 +--
status.23x | 2 ++
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/src/insets/InsetBibtex.cpp b/src/insets/InsetBibtex.cpp
index 4ecb522..7ad93a0 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 += "<br />";
+ tip += "<br />";
tip += _("Options: ") + getParam("biblatexopts");
}
}
diff --git a/status.23x b/status.23x
index e7b3b20..4ed5150 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