Browse Source

Removes tag icons

main
Eric Amodio 7 years ago
parent
commit
85e241bd0a
2 changed files with 4 additions and 7 deletions
  1. +4
    -1
      CHANGELOG.md
  2. +0
    -6
      src/views/tagNode.ts

+ 4
- 1
CHANGELOG.md View File

@ -10,7 +10,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
![Issue linking](./images/ss-cl-issue-linking.png)
- Adds icons to remotes in the *GitLens* view based on the remote service provider
- Adds icons to remotes in the *GitLens* explorer based on the remote service provider
- Adds multi-cursor support to current line annotations — closes [#291](https://github.com/eamodio/vscode-gitlens/issues/291)
- 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)
- 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
### Changed
- 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)
### Removed
- Removes tag icons from the *GitLens* explorer
### Fixed
- 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)
- Fixes issue where Recent Changes annotations weren't restored properly on tab switch

+ 0
- 6
src/views/tagNode.ts View File

@ -36,12 +36,6 @@ export class TagNode extends ExplorerRefNode {
async getTreeItem(): Promise<TreeItem> {
const item = new TreeItem(this.tag.name, TreeItemCollapsibleState.Collapsed);
item.contextValue = ResourceType.Tag;
item.iconPath = {
dark: Container.context.asAbsolutePath(`images/dark/icon-tag.svg`),
light: Container.context.asAbsolutePath(`images/light/icon-tag.svg`)
};
return item;
}
}

Loading…
Cancel
Save