diff options
author | nyamatongwe <unknown> | 2003-07-26 00:59:44 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2003-07-26 00:59:44 +0000 |
commit | 6516d95b1c0525422acf45663c8468ea128a1211 (patch) | |
tree | d171f6f038353500a2f304b0b53566e2372f82c0 /src | |
parent | 5e3ef717507786552157180c9d61fc44f1b78047 (diff) | |
download | scintilla-mirror-6516d95b1c0525422acf45663c8468ea128a1211.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); |