Browse Source

Removes leading checkmark for decoration

main
Eric Amodio 3 years ago
parent
commit
5115f4d628
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/views/nodes/branchNode.ts

+ 1
- 1
src/views/nodes/branchNode.ts View File

@ -391,7 +391,7 @@ export class BranchNode
}
const item = new TreeItem(
`${this.options.showCurrent && this.current ? Strings.pad(GlyphChars.Check, 0, 2) : ''}${this.label}`,
this.label,
this.options.expanded ? TreeItemCollapsibleState.Expanded : TreeItemCollapsibleState.Collapsed,
);
item.iconPath = this.options.showAsCommits

Loading…
Cancel
Save