🐛 SourceControlResourceDecorations.faded

fixes #24097
This commit is contained in:
Joao Moreno
2017-04-27 15:24:58 +02:00
parent 3f0c6c8a5b
commit 9b7a8813e0
8 changed files with 56 additions and 27 deletions

View File

@@ -115,8 +115,9 @@ class ExtHostSourceControlResourceGroup implements vscode.SourceControlResourceG
}
const strikeThrough = r.decorations && !!r.decorations.strikeThrough;
const faded = r.decorations && !!r.decorations.faded;
return [handle, sourceUri, command, icons, strikeThrough] as SCMRawResource;
return [handle, sourceUri, command, icons, strikeThrough, faded] as SCMRawResource;
});
this._proxy.$updateGroupResourceStates(this._sourceControlHandle, this._handle, rawResources);