提交 1db9228d 编写于 作者: C Christof Marti

Make sure there is vertical space for buttons (fixes #96602)

上级 de0d8c74
......@@ -274,8 +274,10 @@ class QuickInput extends Disposable implements IQuickInput {
return;
}
const title = this.getTitle();
if (this.ui.title.textContent !== title) {
if (title && this.ui.title.textContent !== title) {
this.ui.title.textContent = title;
} else if (!title && this.ui.title.innerHTML !== ' ') {
this.ui.title.innerHTML = ' ';
}
const description = this.getDescription();
if (this.ui.description.textContent !== description) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册