aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.cxx
diff options
context:
space:
mode:
authorMarko Njezic <devnull@localhost>2012-02-17 23:59:20 +0100
committerMarko Njezic <devnull@localhost>2012-02-17 23:59:20 +0100
commit8fd74650b45775cdd3e34d41fe60c206a4310dbd (patch)
treed9a9e7d2dd198392decf1abcc371aa9d00372af6 /src/Editor.cxx
parent948f0a4a090e1caed33d52065654a48e508c4883 (diff)
downloadscintilla-mirror-8fd74650b45775cdd3e34d41fe60c206a4310dbd.tar.gz
Draw markers horizontally off center only on textual margins. Bug #3488696.
Diffstat (limited to 'src/Editor.cxx')
-rw-r--r--src/Editor.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx
index e9b66fcce..a6212ab1f 100644
--- a/src/Editor.cxx
+++ b/src/Editor.cxx
@@ -1979,7 +1979,7 @@ void Editor::PaintSelMargin(Surface *surfWindow, PRectangle &rc) {
tFold = LineMarker::tail;
}
}
- vs.markers[markBit].Draw(surface, rcMarker, vs.styles[STYLE_LINENUMBER].font, tFold);
+ vs.markers[markBit].Draw(surface, rcMarker, vs.styles[STYLE_LINENUMBER].font, tFold, vs.ms[margin].style);
}
marks >>= 1;
}