File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed
Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -172,6 +172,12 @@ void ScintillaWrapper::notify(SCNotification *notifyCode)
172172 case SCN_MARGINCLICK:
173173 params[" margin" ] = notifyCode->margin ;
174174 params[" position" ] = notifyCode->position ;
175+ params[" modifiers" ] = notifyCode->modifiers ;
176+ break ;
177+
178+ case SCN_MARGINRIGHTCLICK:
179+ params[" margin" ] = notifyCode->margin ;
180+ params[" position" ] = notifyCode->position ;
175181 params[" modifiers" ] = notifyCode->modifiers ;
176182 break ;
177183
Original file line number Diff line number Diff line change @@ -96,7 +96,11 @@ SCINTILLANOTIFICATION
9696
9797.. attribute :: SCINTILLANOTIFICATION.MARGINCLICK
9898
99- Arguments contains: ``margin ``
99+ Arguments contains: ``modifiers ``, ``position ``, ``margin ``
100+
101+ .. attribute :: SCINTILLANOTIFICATION.MARGINRIGHTCLICK
102+
103+ Arguments contains: ``modifiers ``, ``position ``, ``margin ``
100104
101105.. attribute :: SCINTILLANOTIFICATION.NEEDSHOWN
102106
You can’t perform that action at this time.
0 commit comments