processing-experimental icon indicating copy to clipboard operation
processing-experimental copied to clipboard

Break point can't be added once all break point have been removed when using the debugger

Open joelmoniz opened this issue 11 years ago • 0 comments

Reproducing this issue:

  1. 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);
    }
  2. Add a break point at both fill and rect lines in draw().
  3. Debug.
  4. When the debugger pauses at one of the break points, remove the other one.
  5. Now, toggle the current breakpoint, and continue. It isn't possible to add a break point after this.

joelmoniz avatar Apr 23 '14 07:04 joelmoniz