diff options
author | nyamatongwe <unknown> | 2007-11-11 07:27:57 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2007-11-11 07:27:57 +0000 |
commit | 4cb95d26a562ba473cc87aeac99dbd839f7b76a7 (patch) | |
tree | e3e6d6aba3e15cadc4e257d68d2c6cede7634dac /src/Editor.cxx | |
parent | ffa930e295f8c447becc1311f66125eb0540ce80 (diff) | |
download | scintilla-mirror-4cb95d26a562ba473cc87aeac99dbd839f7b76a7.tar.gz |
Fixed bug with modern indicators when wrap turned on and indicator not on
first line.
Diffstat (limited to 'src/Editor.cxx')
-rw-r--r-- | src/Editor.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx index a1a48a08b..9107102ff 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -2177,7 +2177,7 @@ void Editor::DrawIndicators(Surface *surface, ViewStyle &vsDraw, int line, int x for (Decoration *deco = pdoc->decorations.root; deco; deco = deco->next) { if (under == vsDraw.indicators[deco->indicator].under) { - int startPos = posLineStart + subLineStart; + int startPos = posLineStart + lineStart; if (!deco->rs.ValueAt(startPos)) { startPos = deco->rs.EndRun(startPos); } |