From d3edcc88f7534bd3456596ea683e4a74ad6f231c Mon Sep 17 00:00:00 2001 From: uhf7 Date: Fri, 31 Jul 2020 08:17:33 +1000 Subject: Bug [#2170]. Fixed cursor flicker over an indicator with hover style. --- win32/ScintillaWin.cxx | 2 ++ 1 file changed, 2 insertions(+) (limited to 'win32') diff --git a/win32/ScintillaWin.cxx b/win32/ScintillaWin.cxx index 01eb13883..7c5c1a6ae 100644 --- a/win32/ScintillaWin.cxx +++ b/win32/ScintillaWin.cxx @@ -1377,6 +1377,8 @@ Window::Cursor ScintillaWin::ContextCursor() { return Window::cursorArrow; } else if (PointIsHotspot(PointFromPOINT(pt))) { return Window::cursorHand; + } else if (hoverIndicatorPos != Sci::invalidPosition) { + return Window::cursorHand; } } } -- cgit v1.2.3