aboutsummaryrefslogtreecommitdiffhomepage
path: root/win32/ScintillaWin.cxx
diff options
context:
space:
mode:
authoruhf7 <unknown>2020-07-31 08:17:33 +1000
committeruhf7 <unknown>2020-07-31 08:17:33 +1000
commit12ff4f9958a3803560ce9a0a57c5f50100bc4004 (patch)
tree3553626cd4badbbc4725478f6f9524929e00afcb /win32/ScintillaWin.cxx
parent0ddb82e9997740c4e73724889f814de324deadfc (diff)
downloadscintilla-mirror-12ff4f9958a3803560ce9a0a57c5f50100bc4004.tar.gz
Backport: Bug [#2170]. Fixed cursor flicker over an indicator with hover style.
Backport of changeset 8467:cb319e3ab20e.
Diffstat (limited to 'win32/ScintillaWin.cxx')
-rw-r--r--win32/ScintillaWin.cxx2
1 files changed, 2 insertions, 0 deletions
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;
}
}
}