gutterIconPath is string or Uri, #12111

This commit is contained in:
Johannes Rieken
2016-09-29 09:54:55 +02:00
parent c4f793759a
commit 2d1c94ab08
6 changed files with 46 additions and 8 deletions

View File

@@ -163,7 +163,7 @@ class TextEditorDecorationType implements vscode.TextEditorDecorationType {
constructor(proxy: MainThreadEditorsShape, options: vscode.DecorationRenderOptions) {
this.key = TextEditorDecorationType._Keys.nextId();
this._proxy = proxy;
this._proxy.$registerTextEditorDecorationType(this.key, options);
this._proxy.$registerTextEditorDecorationType(this.key, TypeConverters.fromDecorationRenderOptions(options));
}
public dispose(): void {