Skip to content

Commit 8e65075

Browse files
committed
Fix params for SCN_INDICATORCLICK and SCN_INDICATORRELEASE
1 parent 92793d7 commit 8e65075

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

PythonScript/src/ScintillaWrapper.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,9 +210,9 @@ void ScintillaWrapper::notify(SCNotification *notifyCode)
210210
break;
211211

212212
case SCN_INDICATORCLICK:
213-
break;
214-
215213
case SCN_INDICATORRELEASE:
214+
params["position"] = notifyCode->position;
215+
params["modifiers"] = notifyCode->modifiers;
216216
break;
217217

218218
case SCN_CALLTIPCLICK:

0 commit comments

Comments
 (0)