diff options
author | Neil <nyamatongwe@gmail.com> | 2023-10-10 10:10:31 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2023-10-10 10:10:31 +1100 |
commit | fef04a18f5806f0842a1b97d3548738522ee1e33 (patch) | |
tree | e23a181f1a327d39ceea8168b4db6c4b7da090e4 /src | |
parent | 3cfe8e087cea56ab445a3bf1da3762e5c224c374 (diff) | |
download | scintilla-mirror-fef04a18f5806f0842a1b97d3548738522ee1e33.tar.gz |
Share definition of colour used for IME indicators on most platforms.
Diffstat (limited to 'src')
-rw-r--r-- | src/ScintillaBase.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ScintillaBase.h b/src/ScintillaBase.h index b8331aaf0..bfeb5a3d9 100644 --- a/src/ScintillaBase.h +++ b/src/ScintillaBase.h @@ -10,6 +10,10 @@ namespace Scintilla::Internal { +// For most platforms (not Cocoa) all IME indicators are drawn in same colour, +// blue, with different patterns. +constexpr ColourRGBA colourIME(0x0, 0x0, 0xffU); + class LexState; /** */ |