aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.h
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2021-05-08 15:20:59 +1000
committerNeil <nyamatongwe@gmail.com>2021-05-08 15:20:59 +1000
commitf0c53e7b25f12be66881acc110d815ec491f1533 (patch)
treee39ee8ce22b6f882ebcd2afcccf9fa1e71fd0a4e /src/Editor.h
parent9547147a9ca0f258d5d25a0b0b116373ed29533f (diff)
downloadscintilla-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/Editor.h')
-rw-r--r--src/Editor.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Editor.h b/src/Editor.h
index eabd7517e..ae3f0ef5a 100644
--- a/src/Editor.h
+++ b/src/Editor.h
@@ -265,7 +265,7 @@ protected: // ScintillaBase subclass needs access to much of Editor
// Wrapping support
WrapPending wrapPending;
- ActionDuration durationWrapOneLine;
+ ActionDuration durationWrapOneByte;
bool convertPastes;