diff options
author | Neil <nyamatongwe@gmail.com> | 2025-01-22 21:34:54 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2025-01-22 21:34:54 +1100 |
commit | 3de9d37c7b8f4501558d309ada718dc52533e94c (patch) | |
tree | ce87afaff43a86c26c562fefcf0c9a5ea409ef6b /src/CellBuffer.h | |
parent | bac32d7fde0b1d052ac9e926c6b3c96afe39bcfd (diff) | |
download | scintilla-mirror-3de9d37c7b8f4501558d309ada718dc52533e94c.tar.gz |
Bug [#1224]. Remember selection in undo history. SCI_SETSELECTIONUNDOHISTORY.
Diffstat (limited to 'src/CellBuffer.h')
-rw-r--r-- | src/CellBuffer.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/CellBuffer.h b/src/CellBuffer.h index d5d9a0467..1b035597a 100644 --- a/src/CellBuffer.h +++ b/src/CellBuffer.h @@ -167,6 +167,7 @@ public: void BeginUndoAction(bool mayCoalesce=false) noexcept; void EndUndoAction() noexcept; int UndoSequenceDepth() const noexcept; + bool AfterUndoSequenceStart() const noexcept; void AddUndoAction(Sci::Position token, bool mayCoalesce); void DeleteUndoHistory() noexcept; |