提交 cafc25cc 编写于 作者: B Benjamin Pasero

Tabs: changing close button enablement no longer updates live (fixes #18101)

上级 7b684bf4
...@@ -19,7 +19,6 @@ import { StandardKeyboardEvent } from 'vs/base/browser/keyboardEvent'; ...@@ -19,7 +19,6 @@ import { StandardKeyboardEvent } from 'vs/base/browser/keyboardEvent';
import { KeyCode } from 'vs/base/common/keyCodes'; import { KeyCode } from 'vs/base/common/keyCodes';
import { EditorLabel } from 'vs/workbench/browser/labels'; import { EditorLabel } from 'vs/workbench/browser/labels';
import { ActionBar } from 'vs/base/browser/ui/actionbar/actionbar'; import { ActionBar } from 'vs/base/browser/ui/actionbar/actionbar';
import { IConfigurationService } from 'vs/platform/configuration/common/configuration';
import { IWorkbenchEditorService } from 'vs/workbench/services/editor/common/editorService'; import { IWorkbenchEditorService } from 'vs/workbench/services/editor/common/editorService';
import { IContextMenuService } from 'vs/platform/contextview/browser/contextView'; import { IContextMenuService } from 'vs/platform/contextview/browser/contextView';
import { IEditorGroupService } from 'vs/workbench/services/group/common/groupService'; import { IEditorGroupService } from 'vs/workbench/services/group/common/groupService';
...@@ -59,7 +58,6 @@ export class TabsTitleControl extends TitleControl { ...@@ -59,7 +58,6 @@ export class TabsTitleControl extends TitleControl {
constructor( constructor(
@IContextMenuService contextMenuService: IContextMenuService, @IContextMenuService contextMenuService: IContextMenuService,
@IInstantiationService instantiationService: IInstantiationService, @IInstantiationService instantiationService: IInstantiationService,
@IConfigurationService configurationService: IConfigurationService,
@IWorkbenchEditorService editorService: IWorkbenchEditorService, @IWorkbenchEditorService editorService: IWorkbenchEditorService,
@IEditorGroupService editorGroupService: IEditorGroupService, @IEditorGroupService editorGroupService: IEditorGroupService,
@IUntitledEditorService private untitledEditorService: IUntitledEditorService, @IUntitledEditorService private untitledEditorService: IUntitledEditorService,
...@@ -71,7 +69,7 @@ export class TabsTitleControl extends TitleControl { ...@@ -71,7 +69,7 @@ export class TabsTitleControl extends TitleControl {
@IQuickOpenService quickOpenService: IQuickOpenService, @IQuickOpenService quickOpenService: IQuickOpenService,
@IWindowService private windowService: IWindowService @IWindowService private windowService: IWindowService
) { ) {
super(contextMenuService, instantiationService, configurationService, editorService, editorGroupService, contextKeyService, keybindingService, telemetryService, messageService, menuService, quickOpenService); super(contextMenuService, instantiationService, editorService, editorGroupService, contextKeyService, keybindingService, telemetryService, messageService, menuService, quickOpenService);
this.tabDisposeables = []; this.tabDisposeables = [];
this.editorLabels = []; this.editorLabels = [];
...@@ -218,6 +216,11 @@ export class TabsTitleControl extends TitleControl { ...@@ -218,6 +216,11 @@ export class TabsTitleControl extends TitleControl {
// Container // Container
tabContainer.setAttribute('aria-label', `${name}, tab`); tabContainer.setAttribute('aria-label', `${name}, tab`);
tabContainer.title = verboseDescription; tabContainer.title = verboseDescription;
if (this.tabOptions.showTabCloseButton) {
DOM.removeClass(tabContainer, 'no-close-button');
} else {
DOM.addClass(tabContainer, 'no-close-button');
}
// Label // Label
const tabLabel = this.editorLabels[index]; const tabLabel = this.editorLabels[index];
...@@ -362,12 +365,6 @@ export class TabsTitleControl extends TitleControl { ...@@ -362,12 +365,6 @@ export class TabsTitleControl extends TitleControl {
tabContainer.setAttribute('role', 'presentation'); // cannot use role "tab" here due to https://github.com/Microsoft/vscode/issues/8659 tabContainer.setAttribute('role', 'presentation'); // cannot use role "tab" here due to https://github.com/Microsoft/vscode/issues/8659
DOM.addClass(tabContainer, 'tab monaco-editor-background'); DOM.addClass(tabContainer, 'tab monaco-editor-background');
if (!this.tabOptions.showTabCloseButton) {
DOM.addClass(tabContainer, 'no-close-button');
} else {
DOM.removeClass(tabContainer, 'no-close-button');
}
// Tab Editor Label // Tab Editor Label
const editorLabel = this.instantiationService.createInstance(EditorLabel, tabContainer, void 0); const editorLabel = this.instantiationService.createInstance(EditorLabel, tabContainer, void 0);
this.editorLabels.push(editorLabel); this.editorLabels.push(editorLabel);
......
...@@ -23,7 +23,6 @@ import { IActionItem, ActionsOrientation, Separator } from 'vs/base/browser/ui/a ...@@ -23,7 +23,6 @@ import { IActionItem, ActionsOrientation, Separator } from 'vs/base/browser/ui/a
import { ToolBar } from 'vs/base/browser/ui/toolbar/toolbar'; import { ToolBar } from 'vs/base/browser/ui/toolbar/toolbar';
import { IWorkbenchEditorService } from 'vs/workbench/services/editor/common/editorService'; import { IWorkbenchEditorService } from 'vs/workbench/services/editor/common/editorService';
import { IContextMenuService } from 'vs/platform/contextview/browser/contextView'; import { IContextMenuService } from 'vs/platform/contextview/browser/contextView';
import { IConfigurationService } from 'vs/platform/configuration/common/configuration';
import { IEditorGroupService, ITabOptions } from 'vs/workbench/services/group/common/groupService'; import { IEditorGroupService, ITabOptions } from 'vs/workbench/services/group/common/groupService';
import { IMessageService, Severity } from 'vs/platform/message/common/message'; import { IMessageService, Severity } from 'vs/platform/message/common/message';
import { StandardMouseEvent } from 'vs/base/browser/mouseEvent'; import { StandardMouseEvent } from 'vs/base/browser/mouseEvent';
...@@ -94,7 +93,6 @@ export abstract class TitleControl implements ITitleAreaControl { ...@@ -94,7 +93,6 @@ export abstract class TitleControl implements ITitleAreaControl {
constructor( constructor(
@IContextMenuService protected contextMenuService: IContextMenuService, @IContextMenuService protected contextMenuService: IContextMenuService,
@IInstantiationService protected instantiationService: IInstantiationService, @IInstantiationService protected instantiationService: IInstantiationService,
@IConfigurationService protected configurationService: IConfigurationService,
@IWorkbenchEditorService protected editorService: IWorkbenchEditorService, @IWorkbenchEditorService protected editorService: IWorkbenchEditorService,
@IEditorGroupService protected editorGroupService: IEditorGroupService, @IEditorGroupService protected editorGroupService: IEditorGroupService,
@IContextKeyService protected contextKeyService: IContextKeyService, @IContextKeyService protected contextKeyService: IContextKeyService,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册