#102581 update icon and merge view into title

This commit is contained in:
Sandeep Somavarapu
2020-07-21 08:38:34 +02:00
parent 6c79b090ee
commit 5451dbfb9e
2 changed files with 2 additions and 2 deletions
@@ -201,7 +201,7 @@ export class UserDataManualSyncViewPane extends TreeViewPane {
super({
id: `workbench.actions.sync.merge`,
title: localize('workbench.actions.sync.merge', "Merge"),
icon: Codicon.gitMerge,
icon: Codicon.merge,
menu: {
id: MenuId.ViewItemContext,
when: ContextKeyExpr.and(ContextKeyEqualsExpr.create('view', MANUAL_SYNC_VIEW_ID), ContextKeyExpr.equals('viewItem', 'sync-resource-preview')),
@@ -55,7 +55,7 @@ export class UserDataSyncViewPaneContainer extends ViewPaneContainer {
@IExtensionService extensionService: IExtensionService,
@IViewDescriptorService viewDescriptorService: IViewDescriptorService,
) {
super(containerId, { mergeViewWithContainerWhenSingleView: false }, instantiationService, configurationService, layoutService, contextMenuService, telemetryService, extensionService, themeService, storageService, contextService, viewDescriptorService);
super(containerId, { mergeViewWithContainerWhenSingleView: true }, instantiationService, configurationService, layoutService, contextMenuService, telemetryService, extensionService, themeService, storageService, contextService, viewDescriptorService);
}
getActions(): IAction[] {