Skip to content

Commit

Permalink
Changes to eye-closed codicon for Restore
Browse files Browse the repository at this point in the history
  • Loading branch information
eamodio committed Mar 5, 2023
1 parent 3648f76 commit 17abae8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/statusBarController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export class StatusBarController implements Disposable {
private updateStatusBarItem(toggled: boolean) {
if (this._statusBarItem == null) return;

this._statusBarItem.text = toggled ? '$(eye)\u2022' : '$(eye)';
this._statusBarItem.text = toggled ? '$(eye-closed)' : '$(eye)';
this._statusBarItem.tooltip = `${toggled ? 'Restore' : 'Show'} Excluded Files`;
}

Expand Down

0 comments on commit 17abae8

Please sign in to comment.