Skip to content
This repository was archived by the owner on Oct 4, 2019. It is now read-only.
This repository was archived by the owner on Oct 4, 2019. It is now read-only.

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

@joelmoniz

Description

@joelmoniz

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions