aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.cxx
diff options
context:
space:
mode:
authornyamatongwe <unknown>2001-09-07 08:01:30 +0000
committernyamatongwe <unknown>2001-09-07 08:01:30 +0000
commite8dd68d54a56f505c1cdd901c31a4629ba19b524 (patch)
treeff44f1a8ea2ef437516aafcf704e5d24cf096f8e /src/Editor.cxx
parent30f4bacfe06eb177307585e54398a8ac7288448b (diff)
downloadscintilla-mirror-e8dd68d54a56f505c1cdd901c31a4629ba19b524.tar.gz
Marker can be any character.
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 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;
}