From: Jean-Marc Lasgouttes Date: Fri, 15 Feb 2019 15:07:00 +0000 (+0100) Subject: DEPM: do not strip explicitly leading spaces X-Git-Tag: lyx-2.4.0dev-acb2ca7b~2572 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=aaab1ad65d38c1ddaf68dfd1c4891ded26013ae0;p=features.git DEPM: do not strip explicitly leading spaces For the local version of DEPM, only what was around old cursor should change For the global version, leading spaces are already handled. --- diff --git a/src/Text2.cpp b/src/Text2.cpp index c7824bbc71..b5c341c384 100644 --- a/src/Text2.cpp +++ b/src/Text2.cpp @@ -941,13 +941,6 @@ bool Text::deleteEmptyParagraphMechanism(Cursor & cur, return true; } - if (oldpar.stripLeadingSpaces(trackChanges)) { - need_anchor_change = true; - // We return true here because the Paragraph contents changed and - // we need a redraw before further action is processed. - return true; - } - return false; } @@ -1005,8 +998,6 @@ void Text::deleteEmptyParagraphMechanism(pit_type first, pit_type last, bool tra --last; continue; } - - par.stripLeadingSpaces(trackChanges); } }