diff options
author | Neil <nyamatongwe@gmail.com> | 2018-10-15 09:13:17 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2018-10-15 09:13:17 +1100 |
commit | bf400a65a12475fd60c8a9a213a8bc9956cdeb5f (patch) | |
tree | ce52c4ad60ee3ecf0c7050271543a75a1208ad75 /src/Editor.h | |
parent | e21a8ca7ecf4001bb3c9a6bcc9d415e60ba2b303 (diff) | |
download | scintilla-mirror-bf400a65a12475fd60c8a9a213a8bc9956cdeb5f.tar.gz |
Set number of lines wrapped in one go to maintain responsiveness and efficiency
by measuring speed and limiting to around 10 milliseconds.
Diffstat (limited to 'src/Editor.h')
-rw-r--r-- | src/Editor.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Editor.h b/src/Editor.h index a75461afe..a6e059714 100644 --- a/src/Editor.h +++ b/src/Editor.h @@ -250,6 +250,7 @@ protected: // ScintillaBase subclass needs access to much of Editor // Wrapping support WrapPending wrapPending; + ActionDuration durationWrapOneLine; bool convertPastes; |