diff options
author | nyamatongwe <devnull@localhost> | 2001-09-07 08:01:30 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2001-09-07 08:01:30 +0000 |
commit | 9179b488c0aacb3a624142dd9a3b2c7a7efe1569 (patch) | |
tree | ff44f1a8ea2ef437516aafcf704e5d24cf096f8e /src/Editor.cxx | |
parent | 912e86ac5b4c2d049805861f34934d73702c9e01 (diff) | |
download | scintilla-mirror-9179b488c0aacb3a624142dd9a3b2c7a7efe1569.tar.gz |
Marker can be any character.
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 73114f103..fecd4b08e 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -859,7 +859,7 @@ void Editor::PaintSelMargin(Surface *surfWindow, PRectangle &rc) { if (marks) { for (int markBit = 0; (markBit < 32) && marks; markBit++) { if (marks & 1) { - vs.markers[markBit].Draw(surface, rcMarker); + vs.markers[markBit].Draw(surface, rcMarker, vs.styles[STYLE_LINENUMBER].font); } marks >>= 1; } |