提交 e4286549 编写于 作者: R Rob Lourens

Fix #59954 - minimum size contraints for settings UI

上级 eb3582ea
......@@ -161,6 +161,13 @@ export class SettingsEditor2 extends BaseEditor {
}));
}
get minimumWidth(): number { return 375; }
get maximumWidth(): number { return Number.POSITIVE_INFINITY; }
// these setters need to exist because this extends from BaseEditor
set minimumWidth(value: number) { /*noop*/ }
set maximumWidth(value: number) { /*noop*/ }
private get currentSettingsModel() {
return this.searchResultModel || this.settingsTreeModel;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册