From: Udi Fogiel Date: Mon, 10 Jun 2024 12:19:08 +0000 (+0300) Subject: Fix change tracking colors with RTL languages (#12923) X-Git-Tag: 2.4.1~40 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=f04ffb251312bc3678b2843e08ef3d64a29c18ef;p=lyx.git Fix change tracking colors with RTL languages (#12923) (cherry picked from commit a5749b9c1f5c5b42e6d6db7cd9f2aab16bc28f5b) --- diff --git a/src/LaTeXFeatures.cpp b/src/LaTeXFeatures.cpp index 4a4385fc01..e68f850d0a 100644 --- a/src/LaTeXFeatures.cpp +++ b/src/LaTeXFeatures.cpp @@ -208,8 +208,8 @@ static docstring const lyxdot_def = from_ascii( static docstring const changetracking_xcolor_ulem_base_def = from_ascii( "%% Change tracking with ulem and xcolor: base macros\n" - "\\DeclareRobustCommand{\\mklyxadded}[1]{\\bgroup\\color{lyxadded}{}#1\\egroup}\n" - "\\DeclareRobustCommand{\\mklyxdeleted}[1]{\\bgroup\\color{lyxdeleted}\\mklyxsout{#1}\\egroup}\n" + "\\DeclareRobustCommand{\\mklyxadded}[1]{\\textcolor{lyxadded}\\bgroup#1\\egroup}\n" + "\\DeclareRobustCommand{\\mklyxdeleted}[1]{\\textcolor{lyxdeleted}\\bgroup\\mklyxsout{#1}\\egroup}\n" "\\DeclareRobustCommand{\\mklyxsout}[1]{\\ifx\\\\#1\\else\\sout{#1}\\fi}\n"); static docstring const changetracking_xcolor_ulem_def = from_ascii(