File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
55The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ ) and this project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
66
7+ ## [ Unreleased]
8+ ### Fixed
9+ - Fixes [ #247 ] ( https://github.com/eamodio/vscode-gitlens/issues/247 ) - File annotations button or ESC key does not turn off file annotations
10+
711## [ 7.5.4] - 2018-01-17
812### Fixed
913- Fixes [ #249 ] ( https://github.com/eamodio/vscode-gitlens/issues/249 ) - Gitlens disappears from the status bar
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ export abstract class AnnotationProviderBase extends Disposable {
6161 protected additionalDecorations : { decoration : TextEditorDecorationType , ranges : Range [ ] } [ ] | undefined ;
6262
6363 async clear ( ) {
64- if ( this . editor === undefined || this . additionalDecorations === undefined || this . additionalDecorations . length === 0 ) return ;
64+ if ( this . editor === undefined ) return ;
6565
6666 if ( this . decoration !== undefined ) {
6767 try {
You can’t perform that action at this time.
0 commit comments