Skip to content

Commit 85e241b

Browse files
committed
Removes tag icons
1 parent 02e0801 commit 85e241b

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
1010

1111
![Issue linking](./images/ss-cl-issue-linking.png)
1212

13-
- Adds icons to remotes in the *GitLens* view based on the remote service provider
13+
- Adds icons to remotes in the *GitLens* explorer based on the remote service provider
1414
- Adds multi-cursor support to current line annotations — closes [#291](https://github.com/eamodio/vscode-gitlens/issues/291)
1515
- Adds support to toggle annotations for each file individually or for all files at once — closes [#289](https://github.com/eamodio/vscode-gitlens/issues/289)
1616
- Adds new controls the interactive settings editor (*Open Settings* from the Command Palette) to configure this new behavior
@@ -21,6 +21,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
2121
### Changed
2222
- Renames *Compare Selected Ancestor with Working Tree* command to *Compare Ancestry with Working Tree* and removes the need to select a branch first, since all compares are done to the working tree — closes [#279](https://github.com/eamodio/vscode-gitlens/issues/279)
2323

24+
### Removed
25+
- Removes tag icons from the *GitLens* explorer
26+
2427
### Fixed
2528
- Fixes [#294](https://github.com/eamodio/vscode-gitlens/issues/294) - Keyboard shortcuts will now default to *chorded* to avoid conflicts. FYI, only affects new installs or if you remove the `gitlens.keymap` setting)
2629
- Fixes issue where Recent Changes annotations weren't restored properly on tab switch

src/views/tagNode.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,6 @@ export class TagNode extends ExplorerRefNode {
3636
async getTreeItem(): Promise<TreeItem> {
3737
const item = new TreeItem(this.tag.name, TreeItemCollapsibleState.Collapsed);
3838
item.contextValue = ResourceType.Tag;
39-
40-
item.iconPath = {
41-
dark: Container.context.asAbsolutePath(`images/dark/icon-tag.svg`),
42-
light: Container.context.asAbsolutePath(`images/light/icon-tag.svg`)
43-
};
44-
4539
return item;
4640
}
4741
}

0 commit comments

Comments
 (0)