From 12ff4f9958a3803560ce9a0a57c5f50100bc4004 Mon Sep 17 00:00:00 2001 From: uhf7 Date: Fri, 31 Jul 2020 08:17:33 +1000 Subject: Backport: Bug [#2170]. Fixed cursor flicker over an indicator with hover style. Backport of changeset 8467:cb319e3ab20e. --- win32/ScintillaWin.cxx | 2 ++ 1 file changed, 2 insertions(+) (limited to 'win32') diff --git a/win32/ScintillaWin.cxx b/win32/ScintillaWin.cxx index 7e041130c..cc2f6f90e 100644 --- a/win32/ScintillaWin.cxx +++ b/win32/ScintillaWin.cxx @@ -1365,6 +1365,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