From: Juergen Spitzmueller Date: Mon, 15 Jul 2019 05:11:27 +0000 (+0200) Subject: Fix copy/paste error X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=9f041cd64906eb6850b1164b8aed38a467260b8c;p=features.git Fix copy/paste error --- diff --git a/lib/lyx2lyx/lyx_2_4.py b/lib/lyx2lyx/lyx_2_4.py index 31329fd447..51d0d6bb69 100644 --- a/lib/lyx2lyx/lyx_2_4.py +++ b/lib/lyx2lyx/lyx_2_4.py @@ -2682,9 +2682,9 @@ def convert_osf(document): ttfont = re.findall(r'[^"\s]\S*|".+?"', document.header[x]) tt = ttfont[1].strip('"') if tt in osftt: - document.header.insert(i + 1, "\\font_sans_osf true") + document.header.insert(i + 1, "\\font_typewriter_osf true") else: - document.header.insert(i + 1, "\\font_sans_osf false") + document.header.insert(i + 1, "\\font_typewriter_osf false") else: document.header.insert(i, "\\font_sans_osf false")