From 61aaee5cddbc546c90bf4962f32c3e237f05e033 Mon Sep 17 00:00:00 2001 From: uhf7 Date: Tue, 11 Aug 2020 20:26:42 +1000 Subject: Bug [#2193]. Fixed bug where hovered indicator was not returning to non-hover when mouse over selection. --- src/Editor.cxx | 1 + 1 file changed, 1 insertion(+) (limited to 'src') 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)) { -- cgit v1.2.3