From bde95c1876c78f5391d80b1c547411ba5886f347 Mon Sep 17 00:00:00 2001 From: Juergen Spitzmueller Date: Fri, 19 Jun 2020 16:40:07 +0200 Subject: [PATCH] Fix swapped logic (#11889) --- src/insets/InsetQuotes.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/insets/InsetQuotes.cpp b/src/insets/InsetQuotes.cpp index d7f7510ebd..aa2e41bea8 100644 --- a/src/insets/InsetQuotes.cpp +++ b/src/insets/InsetQuotes.cpp @@ -350,7 +350,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; @@ -358,7 +358,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; @@ -393,7 +393,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; @@ -401,7 +401,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; -- 2.39.5