From 2517f7aa22c987919203c6abc21c52242488d3cc Mon Sep 17 00:00:00 2001 From: Neil Date: Mon, 16 Apr 2018 14:26:30 +1000 Subject: Backport: Convert topLine from a screen line to a document line before using it to find a position. Backport of changeset 6691:372b160180b3. --- src/Editor.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/Editor.cxx b/src/Editor.cxx index 708210e27..79fe1addc 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -2561,7 +2561,8 @@ void Editor::NotifyModified(Document *, DocModification mh, void *) { pdoc->IncrementStyleClock(); } if (paintState == notPainting) { - if (mh.position < pdoc->LineStart(topLine)) { + const Sci::Line lineDocTop = pcs->DocFromDisplay(topLine); + if (mh.position < pdoc->LineStart(lineDocTop)) { // Styling performed before this view Redraw(); } else { -- cgit v1.2.3