提交 2b03e716 编写于 作者: J Joao Moreno

💄

上级 2af4677f
......@@ -334,18 +334,17 @@ export class PanelViewlet extends Viewlet {
}
private addPanel(panel: ViewletPanel, size: number, index = this.panelItems.length - 1): void {
const disposables: IDisposable[] = [];
const onDidFocus = panel.onDidFocus(() => this.lastFocusedPanel = panel, null, disposables);
const onDidFocus = panel.onDidFocus(() => this.lastFocusedPanel = panel);
const onDidChangeTitleArea = panel.onDidChangeTitleArea(() => {
if (this.isSingleView()) {
this.updateTitleArea();
}
}, null, disposables);
});
const onDidChange = panel.onDidChange(() => {
if (panel === this.lastFocusedPanel && !panel.isExpanded()) {
this.lastFocusedPanel = undefined;
}
}, null, disposables);
});
const panelStyler = attachStyler<IPanelColors>(this.themeService, {
headerForeground: SIDE_BAR_SECTION_HEADER_FOREGROUND,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册