Fix for issue 2725 and ux fixes (#2992)

This commit is contained in:
Alan Ren
2018-10-24 11:02:08 -07:00
committed by GitHub
parent 48c4a473df
commit 724c49f5c4
7 changed files with 19 additions and 3 deletions

View File

@@ -252,6 +252,7 @@ export class ProfilerEditor extends BaseEditor {
{ action: this._pauseAction },
{ action: this._autoscrollAction },
{ action: this._instantiationService.createInstance(Actions.ProfilerClear, Actions.ProfilerClear.ID, Actions.ProfilerClear.LABEL) },
{ element: Taskbar.createTaskbarSeparator() },
{ element: viewTemplateContainer },
{ element: Taskbar.createTaskbarSeparator() },
{ element: this._connectionInfoText }
@@ -344,6 +345,10 @@ export class ProfilerEditor extends BaseEditor {
]
}, { forceFitColumns: true });
this._detailTableData.onRowCountChange(() => {
this._detailTable.updateRowCount();
});
this._tabbedPanel.pushTab({
identifier: 'detailTable',
title: nls.localize('details', "Details"),