提交 7c12b33c 编写于 作者: I isidor

fixes #7703

上级 d20416e2
......@@ -452,7 +452,8 @@ export class CallStackRenderer implements tree.IRenderer {
private renderThread(thread: debug.IThread, data: IThreadTemplateData): void {
data.thread.title = nls.localize('thread', "Thread");
data.name.textContent = thread.name;
data.stateLabel.textContent = thread.stopped ? nls.localize('paused', "paused") : nls.localize('running', "running");
data.stateLabel.textContent = thread.stopped ? nls.localize('paused', "paused")
: nls.localize({ key: 'running', comment: ['indicates state'] }, "running");
}
private renderError(element: string, data: IErrorTemplateData) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册