diff options
author | Neil <nyamatongwe@gmail.com> | 2022-06-17 15:43:10 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2022-06-17 15:43:10 +1000 |
commit | 60420a669ee740dc157efe56d4d43bc4bb6bee19 (patch) | |
tree | 97da05bfd23c5fa400eeb15a0d66a4c01ec2fc10 /src | |
parent | f36407f2f07898245bda6cbe0e3a9e8be7c89b97 (diff) | |
download | scintilla-mirror-60420a669ee740dc157efe56d4d43bc4bb6bee19.tar.gz |
Change bug colour slightly to be more unique and make it easier to detect when
debugging.
Diffstat (limited to 'src')
-rw-r--r-- | src/EditView.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/EditView.cxx b/src/EditView.cxx index 575c10d6d..c24adeb12 100644 --- a/src/EditView.cxx +++ b/src/EditView.cxx @@ -934,7 +934,7 @@ Sci::Position EditView::StartEndDisplayLine(Surface *surface, const EditModel &m namespace { -constexpr ColourRGBA bugColour = ColourRGBA(0xff, 0, 0xff, 0xf0); +constexpr ColourRGBA bugColour = ColourRGBA(0xff, 0, 0xfe, 0xf0); // Selection background colours are always defined, the value_or is to show if bug |