Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cq_editor/widgets/debugger.py
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ def debug(self, value):
self.previous_trace = previous_trace = sys.gettrace()

self.sigDebugging.emit(True)
self.state = DbgState.STEP
self.state = DbgState.CONT

self.script = self.get_current_script()
cq_script_path = self.get_current_script_path()
Expand Down
6 changes: 3 additions & 3 deletions tests/test_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -460,8 +460,8 @@ def check_no_error_occured():

check_no_error_occured()

assert variables.model().rowCount() == 1
assert number_visible_items(viewer) == 3
assert variables.model().rowCount() == 2
assert number_visible_items(viewer) == 4

# test breakpoint
ev = event_loop(
Expand All @@ -486,7 +486,7 @@ def check_no_error_occured():
assert variables.model().rowCount() == 2
assert number_visible_items(viewer) == 4

# test breakpoint without using singals
# test breakpoint without using signals
ev = event_loop(
[
lambda: (cont.triggered.emit(),),
Expand Down