aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Indicator.cxx
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2003-07-26 00:59:44 +0000
committernyamatongwe <devnull@localhost>2003-07-26 00:59:44 +0000
commit5dcfe356280daa94d68cdeb3ae4953ca67cc44a3 (patch)
treed171f6f038353500a2f304b0b53566e2372f82c0 /src/Indicator.cxx
parentccba66393fa214f0b540977c997d07c646fb6079 (diff)
downloadscintilla-mirror-5dcfe356280daa94d68cdeb3ae4953ca67cc44a3.tar.gz
Invisible indicator INDIC_HIDDEN.
Diffstat (limited to 'src/Indicator.cxx')
-rw-r--r--src/Indicator.cxx2
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);