Skip to content

Commit

Permalink
Fix variables window not resetting when selecting a stack frame with …
Browse files Browse the repository at this point in the history
…no variables
  • Loading branch information
DaelonSuzuka committed Oct 27, 2023
1 parent de172bd commit b42f932
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/debugger/godot4/server_controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -321,6 +321,7 @@ export class ServerController {
this.partial_stack_vars.locals = [];
this.partial_stack_vars.members = [];
this.partial_stack_vars.globals = [];
this.session?.set_scopes(this.partial_stack_vars.locals, this.partial_stack_vars.members, this.partial_stack_vars.globals);
break;
}
case "output": {
Expand Down

0 comments on commit b42f932

Please sign in to comment.