diff options
author | uhf7 <unknown> | 2020-08-11 20:26:42 +1000 |
---|---|---|
committer | uhf7 <unknown> | 2020-08-11 20:26:42 +1000 |
commit | 61aaee5cddbc546c90bf4962f32c3e237f05e033 (patch) | |
tree | 8c68dacf8b4a3e800dbb8a63e682f1dc7b8e1e91 | |
parent | a1867852c2caa12141bed334c751ffa8b1232db4 (diff) | |
download | scintilla-mirror-61aaee5cddbc546c90bf4962f32c3e237f05e033.tar.gz |
Bug [#2193]. Fixed bug where hovered indicator was not returning to non-hover
when mouse over selection.
-rw-r--r-- | src/Editor.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx index 86909d5e4..5e9c0b673 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -4884,6 +4884,7 @@ void Editor::ButtonMoveWithModifiers(Point pt, unsigned int, int modifiers) { // Display regular (drag) cursor over selection if (PointInSelection(pt) && !SelectionEmpty()) { DisplayCursor(Window::cursorArrow); + SetHoverIndicatorPosition(Sci::invalidPosition); } else { SetHoverIndicatorPoint(pt); if (PointIsHotspot(pt)) { |