Skip to content

Commit c13dd4e

Browse files
committed
Fix parameters for SCN_MARGINCLICK
1 parent 403e12e commit c13dd4e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

PythonScript/src/ScintillaWrapper.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,9 @@ void ScintillaWrapper::notify(SCNotification *notifyCode)
165165

166166
case SCN_MARGINCLICK:
167167
params["margin"] = notifyCode->margin;
168-
break;
168+
params["position"] = notifyCode->position;
169+
params["modifiers"] = notifyCode->modifiers;
170+
break;
169171

170172
case SCN_NEEDSHOWN:
171173
break;

0 commit comments

Comments
 (0)