Fix swapped logic (#11889)

(cherry picked from commit bde95c1876)
(cherry picked from commit bccafdac19)
This commit is contained in:
Juergen Spitzmueller 2020-06-19 16:40:07 +02:00 committed by Richard Kimberly Heck
parent f6d14f7435
commit 5b10e628f8
2 changed files with 7 additions and 4 deletions

View File

@ -353,7 +353,7 @@ docstring InsetQuotesParams::getLaTeXQuote(char_type c, string const & op,
case 0x2019: {// '
if (op == "int")
// This macro is redefined in rtl mode
res = rtl ? "\\textquoteright" : "\\textquoteleft";
res = rtl ? "\\textquoteleft" : "\\textquoteright";
else
res = "'";
break;
@ -361,7 +361,7 @@ docstring InsetQuotesParams::getLaTeXQuote(char_type c, string const & op,
case 0x2018: {// `
if (op == "int")
// This macro is redefined in rtl mode
res = rtl ? "\\textquoteleft" : "\\textquoteright";
res = rtl ? "\\textquoteright" : "\\textquoteleft";
else
res = "`";
break;
@ -396,7 +396,7 @@ docstring InsetQuotesParams::getLaTeXQuote(char_type c, string const & op,
case 0x201d: {// ''
if (op == "int")
// This macro is redefined in rtl mode
res = rtl ? "\\textquotedblright" : "\\textquotedblleft";
res = rtl ? "\\textquotedblleft" : "\\textquotedblright";
else
res = "''";
break;
@ -404,7 +404,7 @@ docstring InsetQuotesParams::getLaTeXQuote(char_type c, string const & op,
case 0x201c: {// ``
if (op == "int")
// This macro is redefined in rtl mode
res = rtl ? "\\textquotedblleft" : "\\textquotedblright";
res = rtl ? "\\textquotedblright" : "\\textquotedblleft";
else
res = "``";
break;

View File

@ -38,6 +38,9 @@ What's new
* DOCUMENT INPUT/OUTPUT
- Fix wrong output of quotation marks in headings and captions with hyperref
enabled (bug 11889).
* USER INTERFACE