未验证 提交 b2715b16 编写于 作者: S Serge Rider 提交者: GitHub

Merge pull request #13328 from dbeaver/sql-editor-dispose-fix#12734

#12734 Don't dispose editor asynchronously
......@@ -219,7 +219,7 @@ public class UIServiceSQLImpl implements UIServiceSQL {
if (panelObject instanceof TextViewer) {
Object editor = ((TextViewer) panelObject).getData("editor");
if (editor instanceof SQLEditorBase) {
UIUtils.asyncExec(((SQLEditorBase) editor)::dispose);
((SQLEditorBase) editor).dispose();
}
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册