From c56f05bbe18e1142c9922a2cc0cce047c2a5dfd6 Mon Sep 17 00:00:00 2001 From: Rainer Kottenhoff Date: Sun, 19 May 2019 01:56:20 +0200 Subject: [PATCH] + add: ALT modifier also for hand cursor hover indicator hotspot --- scintilla/src/Editor.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scintilla/src/Editor.cxx b/scintilla/src/Editor.cxx index a8aa1e5cd..6a76d36cd 100644 --- a/scintilla/src/Editor.cxx +++ b/scintilla/src/Editor.cxx @@ -4868,7 +4868,7 @@ void Editor::ButtonMoveWithModifiers(Point pt, unsigned int, int modifiers) { } else { // >>>>>>>>>>>>>>> BEG NON STD SCI PATCH >>>>>>>>>>>>>>> if (hoverIndicatorPos != Sci::invalidPosition) - if (modifiers & SCI_CTRL) { DisplayCursor(Window::cursorHand); } + if (modifiers & (SCI_ALT | SCI_CTRL)) { DisplayCursor(Window::cursorHand); } else DisplayCursor(Window::cursorText); // <<<<<<<<<<<<<<< END NON STD SCI PATCH <<<<<<<<<<<<<<<