Reproducing this issue: <ol> <li>Use the following code (though any code reproduces this issue): <br /> void setup() { <br /> size(200, 200); <br /> background(0); <br /> text("Test", 23, 30); <br /> } <br /> void draw() {<br /> fill(random(0, 254), random(0, 254), random(0, 254)); <br /> rect(40, 34, 54, 41); <br /> } <br /></li> <li>Add a break point at both fill and rect lines in draw().</li> <li>Debug.</li> <li>When the debugger pauses at one of the break points, remove the other one.</li> <li>Now, toggle the current breakpoint, and continue. It isn't possible to add a break point after this.</li></ol>
Reproducing 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);
}