make it possible to change a SCMResourceGroup's label

This commit is contained in:
Ilie Halip
2017-05-05 08:36:40 +03:00
parent 76ec19f240
commit 4fce360efb
4 changed files with 28 additions and 1 deletions

View File

@@ -81,6 +81,11 @@ class ExtHostSourceControlResourceGroup implements vscode.SourceControlResourceG
return this._label;
}
set label(label: string) {
this._label = label;
this._proxy.$updateGroupLabel(this._sourceControlHandle, this._handle, label);
}
private _hideWhenEmpty: boolean | undefined = undefined;
get hideWhenEmpty(): boolean | undefined {