diff options
author | Damiano Lombardi <unknown> | 2021-05-16 08:57:16 +1000 |
---|---|---|
committer | Damiano Lombardi <unknown> | 2021-05-16 08:57:16 +1000 |
commit | 32b3fe6a08b19cdb35d376fc73aa8adcd5f525bf (patch) | |
tree | 9fcc0a4e0b6dffdf64a2177dcf8c97ea9a892023 /src | |
parent | 8710c258ac84500e2a0e233aa9f8fbebbc8b323b (diff) | |
download | scintilla-mirror-32b3fe6a08b19cdb35d376fc73aa8adcd5f525bf.tar.gz |
Include modifiers in SCN_INDICATORRELEASE notification.
Diffstat (limited to 'src')
-rw-r--r-- | src/Editor.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx index 234e40700..8f5903dd5 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -4944,7 +4944,7 @@ void Editor::ButtonUpWithModifiers(Point pt, unsigned int curTime, int modifiers ptMouseLast = pt; SetMouseCapture(false); FineTickerCancel(TickReason::scroll); - NotifyIndicatorClick(false, newPos.Position(), 0); + NotifyIndicatorClick(false, newPos.Position(), modifiers); if (inDragDrop == DragDrop::dragging) { const SelectionPosition selStart = SelectionStart(); const SelectionPosition selEnd = SelectionEnd(); |