+ add: ALT modifier also for hand cursor hover indicator hotspot

This commit is contained in:
Rainer Kottenhoff 2019-05-19 01:56:20 +02:00
parent 09fc5098ee
commit c56f05bbe1

View File

@ -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 <<<<<<<<<<<<<<<