03-15-2014, 10:35 AM
I wanted to experiment with the debug (Run > Debug).
But the only way to toggle a breakpoint was to Middle Click on the Selection bar (grey number gutter on the leftside of the code editor).
At the moment I have custom made popup menu that triggers when a middle click is done within one of the 2 (left/right) code editor panes.
The problem is that it also triggers on the grey selection bar (number gutter leftside code editor).
The complete trigger for the menu is as follows:
+
The following FF filter
Function FF_QM_extra_popupmenu
question
Is there a way to also exclude the grey selection bar (number gutter leftside code editor).
If this is not possible, is it possible to toggle a breakpoint on different way (I could not find something in: Tools > Options > Hotkeys).
But the only way to toggle a breakpoint was to Middle Click on the Selection bar (grey number gutter on the leftside of the code editor).
At the moment I have custom made popup menu that triggers when a middle click is done within one of the 2 (left/right) code editor panes.
The problem is that it also triggers on the grey selection bar (number gutter leftside code editor).
The complete trigger for the menu is as follows:
+
The following FF filter
Function FF_QM_extra_popupmenu
;/
;Allows starting macro when mouse pointer is on certain control.
function# iid FILTER&f
int controlid1 = 2210 ;;change control id
int controlid2 = 2211 ;;change control id
if(!f.hwnd2) ret -2
if(!wintest(f.hwnd "Quick Macros" "QM_Editor")) ret -2 ;;change window name and class
if((GetWinId(f.hwnd2)=controlid1)||(GetWinId(f.hwnd2)=controlid2))
,ret iid
ret -2
,
question
Is there a way to also exclude the grey selection bar (number gutter leftside code editor).
If this is not possible, is it possible to toggle a breakpoint on different way (I could not find something in: Tools > Options > Hotkeys).