adopt icons for timeoutline

refs #93964
This commit is contained in:
SteVen Batten
2020-04-07 08:39:43 -07:00
parent 61f634c150
commit fef3ecd4ac
2 changed files with 2 additions and 0 deletions
@@ -17,6 +17,7 @@ export const PANEL_ID = 'panel.view.outline';
const _outlineDesc = <IViewDescriptor>{
id: OutlineViewId,
name: localize('name', "Outline"),
containerIcon: 'codicon-symbol-class',
ctorDescriptor: new SyncDescriptor(OutlinePane),
canToggleVisibility: true,
canMoveView: true,
@@ -22,6 +22,7 @@ import { ResourceContextKey } from 'vs/workbench/common/resources';
export class TimelinePaneDescriptor implements IViewDescriptor {
readonly id = TimelinePaneId;
readonly name = TimelinePane.TITLE;
readonly containerIcon = 'codicon-history';
readonly ctorDescriptor = new SyncDescriptor(TimelinePane);
readonly order = 2;
readonly weight = 30;