Skip to content

Commit

Permalink
fix: update tooltip when selecting nargo binary (#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAFrench authored Mar 4, 2024
1 parent d358474 commit daf62f4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,8 @@ function registerCommands(uri: Uri) {
const result = await window.showQuickPick(foundNargoBinaries, { placeHolder: 'Select the Nargo binary to use' });
const config = workspace.getConfiguration('noir', uri);
config.update('nargoPath', result);
const statusBarItem = getNoirStatusBarItem();
statusBarItem.tooltip = result;
});
commands$.push(selectNargoPathCommand$);

Expand Down

0 comments on commit daf62f4

Please sign in to comment.