commit de748ead81442117cb7f69881071553da0e0e81b Author: Juergen Spitzmueller <sp...@lyx.org> Date: Sat Jan 6 10:43:44 2018 +0100
Start inset at new line (cherry picked from commit 7da8473c4f7283e55528aad56df0761ef4e50d67) --- lib/lyx2lyx/lyx_2_3.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lib/lyx2lyx/lyx_2_3.py b/lib/lyx2lyx/lyx_2_3.py index 140f57f..f2689fb 100644 --- a/lib/lyx2lyx/lyx_2_3.py +++ b/lib/lyx2lyx/lyx_2_3.py @@ -2134,7 +2134,7 @@ def revert_allowbreak(document): " \SpecialChar allowbreak -> Zero widths Space-inset. " body = "\n".join(document.body) body = body.replace("\\SpecialChar allowbreak\n", - "\\begin_inset space \hspace{}\n" + "\n\\begin_inset space \hspace{}\n" "\\length 0dd\n" "\\end_inset\n\n") document.body = body.split("\n")