We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a8911a commit aaa7133Copy full SHA for aaa7133
name.abuchen.portfolio.ui/src/name/abuchen/portfolio/ui/dialogs/AboutDialog.java
@@ -199,7 +199,10 @@ private void makeInstallationDetailsTab(CTabFolder folder)
199
protected IStatus run(IProgressMonitor monitor)
200
{
201
String infoText = buildInfoText();
202
- Display.getDefault().asyncExec(() -> installationDetails.setText(infoText));
+ Display.getDefault().asyncExec(() -> {
203
+ if (!installationDetails.isDisposed())
204
+ installationDetails.setText(infoText);
205
+ });
206
return Status.OK_STATUS;
207
}
208
}.schedule();
0 commit comments