From 63d10d1054d9987f647bf654be54f355d1dc40d6 Mon Sep 17 00:00:00 2001 From: Neil Date: Sun, 24 Nov 2019 08:04:57 +1100 Subject: Backport: Bug [#2140]. Move rather than grow selection when insertion at start. Backport of changeset 7773:20f353cd5507. --- src/Selection.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Selection.h') diff --git a/src/Selection.h b/src/Selection.h index 11a6f097a..741b75277 100644 --- a/src/Selection.h +++ b/src/Selection.h @@ -23,7 +23,7 @@ public: position = 0; virtualSpace = 0; } - void MoveForInsertDelete(bool insertion, Sci::Position startChange, Sci::Position length) noexcept; + void MoveForInsertDelete(bool insertion, Sci::Position startChange, Sci::Position length, bool moveForEqual) noexcept; bool operator ==(const SelectionPosition &other) const noexcept { return position == other.position && virtualSpace == other.virtualSpace; } -- cgit v1.2.3