diff options
author | Neil <nyamatongwe@gmail.com> | 2021-05-08 15:20:59 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2021-05-08 15:20:59 +1000 |
commit | f0c53e7b25f12be66881acc110d815ec491f1533 (patch) | |
tree | e39ee8ce22b6f882ebcd2afcccf9fa1e71fd0a4e /src/Document.h | |
parent | 9547147a9ca0f258d5d25a0b0b116373ed29533f (diff) | |
download | scintilla-mirror-f0c53e7b25f12be66881acc110d815ec491f1533.tar.gz |
Feature [feature-requests:1373]. Make idle actions smoother by measuring
per-byte and allowing just one line to be processed in a time slice.
Very long lines will not distort estimation or block interaction as much.
Diffstat (limited to 'src/Document.h')
-rw-r--r-- | src/Document.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Document.h b/src/Document.h index 690871ba8..3e57d1449 100644 --- a/src/Document.h +++ b/src/Document.h @@ -282,7 +282,7 @@ public: bool useTabs; bool tabIndents; bool backspaceUnindents; - ActionDuration durationStyleOneLine; + ActionDuration durationStyleOneByte; std::unique_ptr<IDecorationList> decorations; |