Skip to content

Commit

Permalink
Remove scope arg for inspect variable command
Browse files Browse the repository at this point in the history
  • Loading branch information
jtpio committed Nov 17, 2020
1 parent 4b4e21a commit a3adb6c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/debugger/src/panels/variables/grid.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,7 @@ class Grid extends Panel {
mouseHandler.doubleClicked.connect((_, hit) =>
commands.execute(Debugger.CommandIDs.inspectVariable, {
variableReference: dataModel.getVariableReference(hit.row),
title: dataModel.getVariableName(hit.row),
scope: dataModel.scope
title: dataModel.getVariableName(hit.row)
})
);
grid.dataModel = dataModel;
Expand Down

0 comments on commit a3adb6c

Please sign in to comment.