提交 bb279f58 编写于 作者: I isidor

debug: show value in hover on the whole expression

fixes #4840
上级 d9749892
......@@ -70,6 +70,7 @@ export function renderVariable(tree: tree.ITree, variable: model.Variable, data:
if (variable.value) {
renderExpressionValue(variable, data.value, showChanged);
data.expression.title = variable.value;
} else {
data.value.textContent = '';
data.value.title = '';
......@@ -658,6 +659,7 @@ export class WatchExpressionsRenderer implements tree.IRenderer {
data.name.textContent = `${watchExpression.name}:`;
if (watchExpression.value) {
renderExpressionValue(watchExpression, data.value, true);
data.expression.title = watchExpression.value;
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册