The following warnings occurred:
Warning [2] count(): Parameter must be an array or an object that implements Countable - Line: 895 - File: showthread.php PHP 7.2.34 (Linux)
File Line Function
/showthread.php 895 errorHandler->error




Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
trigger, filter: selection bar (number gutter on leftside)
#1
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:
Code:
Copy      Help
trigger: Middle + EAT + When released
Program: Only QM

+

The following FF filter

Function FF_QM_extra_popupmenu
Code:
Copy      Help
;/
;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).


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)