diff options
author | Neil <nyamatongwe@gmail.com> | 2015-01-22 15:11:02 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2015-01-22 15:11:02 +1100 |
commit | 1323a5c0d0229dbbf0ca977c04e350fe0ba442e2 (patch) | |
tree | f0ffa3271a04572450152f638abf67dce98371a7 /src | |
parent | c81055e83c5a351485c69b3a546cc3fd161a61fc (diff) | |
download | scintilla-mirror-1323a5c0d0229dbbf0ca977c04e350fe0ba442e2.tar.gz |
Add INDIC_COMPOSITIONTHIN indicator.
Diffstat (limited to 'src')
-rw-r--r-- | src/Indicator.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Indicator.cxx b/src/Indicator.cxx index d8ad64ed6..daf62aa02 100644 --- a/src/Indicator.cxx +++ b/src/Indicator.cxx @@ -155,6 +155,9 @@ void Indicator::Draw(Surface *surface, const PRectangle &rc, const PRectangle &r } else if (style == INDIC_COMPOSITIONTHICK) { PRectangle rcComposition(rc.left+1, rcLine.bottom-2, rc.right-1, rcLine.bottom); surface->FillRectangle(rcComposition, fore); + } else if (style == INDIC_COMPOSITIONTHIN) { + PRectangle rcComposition(rc.left+1, rcLine.bottom-2, rc.right-1, rcLine.bottom-1); + surface->FillRectangle(rcComposition, fore); } else { // Either INDIC_PLAIN or unknown surface->MoveTo(static_cast<int>(rc.left), ymid); surface->LineTo(static_cast<int>(rc.right), ymid); |