Pārlūkot izejas kodu

Fixes #247 - File blame annotations won't go away

main
Eric Amodio pirms 6 gadiem
vecāks
revīzija
e50fe6928e
2 mainītis faili ar 5 papildinājumiem un 1 dzēšanām
  1. +4
    -0
      CHANGELOG.md
  2. +1
    -1
      src/annotations/annotationProvider.ts

+ 4
- 0
CHANGELOG.md Parādīt failu

@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased]
### Fixed
- Fixes [#247](https://github.com/eamodio/vscode-gitlens/issues/247) - File annotations button or ESC key does not turn off file annotations
## [7.5.4] - 2018-01-17
### Fixed
- Fixes [#249](https://github.com/eamodio/vscode-gitlens/issues/249) - Gitlens disappears from the status bar

+ 1
- 1
src/annotations/annotationProvider.ts Parādīt failu

@ -61,7 +61,7 @@ export abstract class AnnotationProviderBase extends Disposable {
protected additionalDecorations: { decoration: TextEditorDecorationType, ranges: Range[] }[] | undefined;
async clear() {
if (this.editor === undefined || this.additionalDecorations === undefined || this.additionalDecorations.length === 0) return;
if (this.editor === undefined) return;
if (this.decoration !== undefined) {
try {

Notiek ielāde…
Atcelt
Saglabāt