mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-23 18:19:12 +01:00
status - change to id/name instead of category
This commit is contained in:
@@ -28,10 +28,8 @@ export class MainThreadStatusBar implements MainThreadStatusBarShape {
|
||||
|
||||
$setEntry(id: number, extension: IExtensionDescription, text: string, tooltip: string, command: string, color: string | ThemeColor, alignment: MainThreadStatusBarAlignment, priority: number): void {
|
||||
const entry: IStatusbarEntry = {
|
||||
category: {
|
||||
id: extension.identifier.value,
|
||||
label: localize('extensionLabel', "{0} (Extension)", extension.displayName || extension.name)
|
||||
},
|
||||
id: extension.identifier.value,
|
||||
name: localize('extensionLabel', "{0} (Extension)", extension.displayName || extension.name),
|
||||
text,
|
||||
tooltip,
|
||||
command,
|
||||
|
||||
Reference in New Issue
Block a user