canvas mouse up in r2.1 break

A breakpoint in a Canvas event mouseUp (with return true in mouse down) do not stop and not show the debugger.
Or in a window, etc.

[code]Sub MouseUp(X As Integer, Y As Integer) Handles MouseUp

-> breakpoint MessageBox “ok”
MessageBox “ok2”
End Sub
[/code]

Adding a “break”, yes

Sub MouseUp(X As Integer, Y As Integer) Handles MouseUp break MessageBox "ok" MessageBox "ok2" End Sub

one of those nagging problems that has been around for a while where breakpoints can be set but may or may not actually behave

one reason I still tend to debug in 32 bit (which catalina will kill) as the 32 bit debugging is MUCH more reliable in this regard

But this worked in r2.0, is another add to the 2.1

FWIW I completely skipped r2.0

Sorry is my mistake. I do not know how the “ignore all breakpoints” was checked.