Ver código fonte

Fixes issue with replacing existing results

main
Eric Amodio 7 anos atrás
pai
commit
a55d1d42aa
2 arquivos alterados com 5 adições e 0 exclusões
  1. +3
    -0
      CHANGELOG.md
  2. +2
    -0
      src/views/resultsExplorer.ts

+ 3
- 0
CHANGELOG.md Ver arquivo

@ -8,6 +8,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
### Added
- Adds `gitlens.defaultDateStyle` setting to specify how dates will be displayed by default -- closes [#89](https://github.com/eamodio/vscode-gitlens/issues/89)
### Fixed
- Fixes issue where the `GitLens Results` view wouldn't properly update when replacing existing results
## [7.2.0] - 2018-01-01
### Added
- Adds on-demand **heatmap annotations** of the whole file -- closes [#182](https://github.com/eamodio/vscode-gitlens/issues/182)

+ 2
- 0
src/views/resultsExplorer.ts Ver arquivo

@ -179,6 +179,8 @@ export class ResultsExplorer implements TreeDataProvider {
this._roots.forEach(r => r.dispose());
this._roots = [];
this.refresh();
}
private clearResultsNode(node: ExplorerNode) {

Carregando…
Cancelar
Salvar