From aaab1ad65d38c1ddaf68dfd1c4891ded26013ae0 Mon Sep 17 00:00:00 2001 From: Jean-Marc Lasgouttes Date: Fri, 15 Feb 2019 16:07:00 +0100 Subject: [PATCH] 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. --- src/Text2.cpp | 9 --------- 1 file changed, 9 deletions(-) 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); } } -- 2.39.2