Skip to content

Commit a2b7853

Browse files
authored
Merge pull request microsoft#196983 from microsoft/sandy081/equal-dove
fix microsoft#196979
2 parents 7c1bff3 + af3e4b3 commit a2b7853

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/browser/parts/paneCompositeBar.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ export class PaneCompositeBar extends Disposable {
407407
}
408408

409409
// Check cache only if extensions are not yet registered and current window is not native (desktop) remote connection window
410-
if (this.options.icon && !this.hasExtensionsRegistered && !(this.environmentService.remoteAuthority && isNative)) {
410+
if (!this.hasExtensionsRegistered && !(this.part === Parts.SIDEBAR_PART && this.environmentService.remoteAuthority && isNative)) {
411411
cachedViewContainer = cachedViewContainer || this.cachedViewContainers.find(({ id }) => id === viewContainerId);
412412

413413
// Show builtin ViewContainer if not registered yet

0 commit comments

Comments
 (0)