diff options
author | nyamatongwe <devnull@localhost> | 2003-07-26 00:59:44 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2003-07-26 00:59:44 +0000 |
commit | 5dcfe356280daa94d68cdeb3ae4953ca67cc44a3 (patch) | |
tree | d171f6f038353500a2f304b0b53566e2372f82c0 /src | |
parent | ccba66393fa214f0b540977c997d07c646fb6079 (diff) | |
download | scintilla-mirror-5dcfe356280daa94d68cdeb3ae4953ca67cc44a3.tar.gz |
Invisible indicator INDIC_HIDDEN.
Diffstat (limited to 'src')
-rw-r--r-- | src/Indicator.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Indicator.cxx b/src/Indicator.cxx index 580e9f86d..1e386b68e 100644 --- a/src/Indicator.cxx +++ b/src/Indicator.cxx @@ -55,6 +55,8 @@ void Indicator::Draw(Surface *surface, PRectangle &rc) { } else if (style == INDIC_STRIKE) { surface->MoveTo(rc.left, rc.top - 4); surface->LineTo(rc.right, rc.top - 4); + } else if (style == INDIC_HIDDEN) { + // Draw nothing } else { // Either INDIC_PLAIN or unknown surface->MoveTo(rc.left, ymid); surface->LineTo(rc.right, ymid); |