diff options
author | Zufu Liu <unknown> | 2019-06-30 08:34:46 +1000 |
---|---|---|
committer | Zufu Liu <unknown> | 2019-06-30 08:34:46 +1000 |
commit | d7e2afd1f88bf735b010461ff505470bfa468547 (patch) | |
tree | 0305fc8fd126909438c6da42cf90d53a3201b8c2 /src/EditModel.h | |
parent | 24bff87107d89a09e724993e053e7151945596e8 (diff) | |
download | scintilla-mirror-d7e2afd1f88bf735b010461ff505470bfa468547.tar.gz |
Bug [#2038]. Source of input reported in SCN_CHARADDED.
This may be SC_CHARACTERSOURCE_DIRECT_INPUT, SC_CHARACTERSOURCE_TENTATIVE_INPUT,
or SC_CHARACTERSOURCE_IME_RESULT.
Diffstat (limited to 'src/EditModel.h')
-rw-r--r-- | src/EditModel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/EditModel.h b/src/EditModel.h index b63f2129f..9e2f6d94d 100644 --- a/src/EditModel.h +++ b/src/EditModel.h @@ -37,7 +37,7 @@ public: bool primarySelection; enum IMEInteraction { imeWindowed, imeInline } imeInteraction; - + enum class CharacterSource { directInput, tentativeInput, imeResult }; enum class Bidirectional { bidiDisabled, bidiL2R, bidiR2L } bidirectional; int foldFlags; |