Allow extensions to use theme colors in status bar

This commit is contained in:
Martin Aeschlimann
2017-05-24 23:49:51 +02:00
parent 3f683632a3
commit 8e1714c81b
6 changed files with 25 additions and 11 deletions

View File

@@ -277,7 +277,7 @@ export abstract class MainThreadQuickOpenShape {
}
export abstract class MainThreadStatusBarShape {
$setEntry(id: number, extensionId: string, text: string, tooltip: string, command: string, color: string, alignment: MainThreadStatusBarAlignment, priority: number): void { throw ni(); }
$setEntry(id: number, extensionId: string, text: string, tooltip: string, command: string, color: string | editorCommon.ThemeColor, alignment: MainThreadStatusBarAlignment, priority: number): void { throw ni(); }
$dispose(id: number) { throw ni(); }
}