提交 894c6c61 编写于 作者: J Johannes Rieken

deco - scm decorator hacks to make things look nice. time for extension api...

上级 937fb722
......@@ -62,11 +62,11 @@ class SCMDecorationsProvider implements IDecorationsProvider {
provideDecorations(uri: URI): IResourceDecorationData {
const resource = this._data.get(uri.toString());
if (!resource) {
if (!resource || !resource.decorations.color) {
return undefined;
}
return {
weight: 10,
weight: 100 - resource.decorations.tooltip.charAt(0).toLowerCase().charCodeAt(0),
tooltip: localize('tooltip', "{0}, {1}", resource.decorations.tooltip, this._provider.label),
color: resource.decorations.color,
letter: resource.decorations.tooltip.charAt(0)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册