From 2bee29403315a9c0c041ba6bc646c8553ed72042 Mon Sep 17 00:00:00 2001 From: Richard Kimberly Heck Date: Wed, 8 Apr 2020 16:40:39 -0400 Subject: [PATCH] Fix bug #11817. Preserve line spacing when breaking a paragraph at the beginning. --- src/Text.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Text.cpp b/src/Text.cpp index 4a447577f2..1820f0548b 100644 --- a/src/Text.cpp +++ b/src/Text.cpp @@ -723,6 +723,7 @@ static void breakParagraph(Text & text, pit_type par_offset, pos_type pos, tmp->params().depth(par.params().depth()); tmp->params().noindent(par.params().noindent()); + tmp->params().spacing(par.params().spacing()); // move everything behind the break position // to the new paragraph -- 2.39.5