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
commitd3edcc88f7534bd3456596ea683e4a74ad6f231c (patch)
tree7f2c7e861e2a0f0cf017a5cb8ef66d5d5ba76b1c /win32/ScintillaWin.cxx
parent66022254f1cb80c4446286347b5225ee65839655 (diff)
downloadscintilla-mirror-d3edcc88f7534bd3456596ea683e4a74ad6f231c.tar.gz
Bug [#2170]. Fixed cursor flicker over an indicator with hover style.
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 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;
}
}
}