提交 fa7556d7 编写于 作者: S Serge Rider

Tip of the day fix


Former-commit-id: 0c6d6ad7
上级 04b414fa
......@@ -76,7 +76,11 @@ public class ShowTipOfTheDayDialog extends BaseDialog {
protected Control createContents(Composite parent) {
//[dbeaver/dbeaver#11526]
Control contents = super.createContents(parent);
UIUtils.asyncExec(() -> tipArea.layout());
UIUtils.asyncExec(() -> {
if (!tipArea.isDisposed()) {
tipArea.layout();
}
});
return contents;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册