diff options
author | Marko Njezic <unknown> | 2012-02-17 23:59:20 +0100 |
---|---|---|
committer | Marko Njezic <unknown> | 2012-02-17 23:59:20 +0100 |
commit | 3b553666696950d50af766a3e9ea744327b80304 (patch) | |
tree | 236d0d5af5211d660bcc74fb14528655ac60a753 /src/Editor.cxx | |
parent | e820e6b25cf5e213c15078b695972492a9e009a1 (diff) | |
download | scintilla-mirror-3b553666696950d50af766a3e9ea744327b80304.tar.gz |
Draw markers horizontally off center only on textual margins. Bug #3488696.
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 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; } |