processing-experimental
processing-experimental copied to clipboard
Break point can't be added once all break point have been removed when using the debugger
Reproducing this issue:
- Use the following code (though any code reproduces this issue):
void setup() {
size(200, 200);
background(0);
text("Test", 23, 30);
}
void draw() {
fill(random(0, 254), random(0, 254), random(0, 254));
rect(40, 34, 54, 41);
} - Add a break point at both fill and rect lines in draw().
- Debug.
- When the debugger pauses at one of the break points, remove the other one.
- Now, toggle the current breakpoint, and continue. It isn't possible to add a break point after this.