(cherry picked from commit 0bf7b3211d)
This commit is contained in:
Juergen Spitzmueller 2018-07-21 18:33:49 +02:00
parent 7ec4fa149c
commit 1d8ee1c704
2 changed files with 3 additions and 1 deletions

View File

@ -1060,7 +1060,7 @@ docstring InsetText::toolTipText(docstring prefix, size_t const len) const
oss << "<div dir=\"rtl\">";
writePlaintextParagraph(buffer(), *it, oss, rp, ref_printed, len);
if ((*it).isRTL(buffer().params()))
oss << "<div/>";
oss << "</div>";
if (oss.tellp() >= 0 && size_t(oss.tellp()) > len)
break;
}

View File

@ -276,6 +276,8 @@ What's new
- Fix nesting problem with numbers in RTL text (bug 6283).
- Fix display of RTL text in tooltips (bug 10672).
* INTERNALS