We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2db5a35 commit 92314d6Copy full SHA for 92314d6
src/vs/workbench/contrib/snippets/browser/insertSnippet.ts
@@ -185,13 +185,13 @@ class InsertSnippetAction extends EditorAction {
185
const isEnabled = snippetService.isEnabled(snippet);
186
if (isEnabled) {
187
pick.buttons = [{
188
- iconClass: Codicon.eye.classNames,
+ iconClass: Codicon.eyeClosed.classNames,
189
tooltip: nls.localize('disableSnippet', 'Hide from IntelliSense')
190
}];
191
} else {
192
pick.description = nls.localize('isDisabled', "(hidden from IntelliSense)");
193
194
- iconClass: Codicon.eyeClosed.classNames,
+ iconClass: Codicon.eye.classNames,
195
tooltip: nls.localize('enable.snippet', 'Show in IntelliSense')
196
197
}
0 commit comments