File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
8
8
9
9
### Fixed
10
10
11
+ - Fixes Settings editor breaking when dragging it to a new tab group ([ #4061 ] ( https://github.com/gitkraken/vscode-gitlens/issues/4061 ) )
11
12
- Fixes regression where hovering over the Graph WIP row doesn't show up anymore ([ #4062 ] ( https://github.com/gitkraken/vscode-gitlens/issues/4062 ) )
12
13
- Fixes Inspect & Graph Details: autolinks rendering when enabled setting is false ([ #3841 ] ( https://github.com/gitkraken/vscode-gitlens/issues/3841 ) )
13
14
- Fixes comparison with Merge Target on Home fails to open a valid comparison ([ #4060 ] ( https://github.com/gitkraken/vscode-gitlens/issues/4060 ) )
Original file line number Diff line number Diff line change @@ -498,11 +498,6 @@ export class WebviewController<
498
498
499
499
@debug ( )
500
500
private onParentVisibilityChanged ( visible : boolean , active ?: boolean , forceReload ?: boolean ) {
501
- if ( forceReload ) {
502
- void this . refresh ( ) ;
503
- return ;
504
- }
505
-
506
501
if ( this . descriptor . webviewHostOptions ?. retainContextWhenHidden !== true ) {
507
502
if ( visible ) {
508
503
if ( this . _ready ) {
@@ -516,6 +511,8 @@ export class WebviewController<
516
511
} else {
517
512
this . _ready = false ;
518
513
}
514
+ } else if ( forceReload ) {
515
+ void this . refresh ( ) ;
519
516
}
520
517
521
518
if ( visible ) {
You can’t perform that action at this time.
0 commit comments