File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
1313
1414### Fixed
1515
16+ - Fixes [ #3911 ] ( https://github.com/gitkraken/vscode-gitlens/issues/#3911 ) - Avoid Home opening when first-install isn't reliable (e.g. GitPod)
1617- Fixes [ #3888 ] ( https://github.com/gitkraken/vscode-gitlens/issues/#3888 ) - Graph hover should disappear when right-clicking a row
1718
1819## [ 16.1.1] - 2024-12-20
Original file line number Diff line number Diff line change 11import type { ConfigurationChangeEvent , MessageItem } from 'vscode' ;
2- import { Disposable , window } from 'vscode' ;
2+ import { Disposable , env , window } from 'vscode' ;
33import type { GroupableTreeViewTypes , TreeViewTypes } from '../constants.views' ;
44import type { Container } from '../container' ;
55import type { GitContributor } from '../git/models/contributor' ;
@@ -115,7 +115,7 @@ export class Views implements Disposable {
115115 }
116116 }
117117
118- if ( showGitLensView ) {
118+ if ( showGitLensView && ! env . remoteName && env . appHost === 'desktop' ) {
119119 const disposable = once ( container . onReady ) ( ( ) => {
120120 disposable ?. dispose ( ) ;
121121 setTimeout ( ( ) => {
You can’t perform that action at this time.
0 commit comments