提交 af224bca 编写于 作者: G gjsjohnmurray

Fix duplicated '(read-only)' suffix on titlebar name

上级 7639d9b7
......@@ -203,17 +203,20 @@ export class FileEditorInput extends EditorInput implements IFileEditorInput {
switch (verbosity) {
case Verbosity.SHORT:
title = this.shortTitle;
// already decorated by getName()
break;
default:
case Verbosity.MEDIUM:
title = this.mediumTitle;
title = this.decorateLabel(title);
break;
case Verbosity.LONG:
title = this.longTitle;
title = this.decorateLabel(title);
break;
}
return this.decorateLabel(title);
return title;
}
private decorateLabel(label: string): string {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册