aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.cxx
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2015-12-04 10:23:09 +1100
committerNeil <nyamatongwe@gmail.com>2015-12-04 10:23:09 +1100
commit0eb69bbc10850c00e0ed006705c55ab9f6d33ce5 (patch)
treee9c9ed01c09bfac6bdf601ed153d4c74361ee7e2 /src/Editor.cxx
parent960d4fb6b6582363867e73f1a0428b6eacf0d758 (diff)
downloadscintilla-mirror-0eb69bbc10850c00e0ed006705c55ab9f6d33ce5.tar.gz
Bug [#1784]. Highlight whole run for hover indicator when wrapped.
Less efficient now as redraws all text when hover position changes.
Diffstat (limited to 'src/Editor.cxx')
-rw-r--r--src/Editor.cxx5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx
index 742fb41d4..5014b2abb 100644
--- a/src/Editor.cxx
+++ b/src/Editor.cxx
@@ -4585,10 +4585,7 @@ void Editor::SetHoverIndicatorPosition(int position) {
}
}
if (hoverIndicatorPosPrev != hoverIndicatorPos) {
- if (hoverIndicatorPosPrev != INVALID_POSITION)
- InvalidateRange(hoverIndicatorPosPrev, hoverIndicatorPosPrev + 1);
- if (hoverIndicatorPos != INVALID_POSITION)
- InvalidateRange(hoverIndicatorPos, hoverIndicatorPos + 1);
+ Redraw();
}
}