Skip to content

Commit

Permalink
TargetPlatformPreferencePage: fix "Widget is disposed" #432
Browse files Browse the repository at this point in the history
  • Loading branch information
EcljpseB0T authored and jukzi committed Feb 15, 2024
1 parent 1b16948 commit b606f5b
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1020,7 +1020,9 @@ public void done(IJobChangeEvent event) {
if (toLoad != null) {
fActiveTarget = toLoad;
}
fTableViewer.refresh(true);
if (!fTableViewer.getControl().isDisposed()) {
fTableViewer.refresh(true);
}
updateButtons();
return super.performOk();
}
Expand Down

0 comments on commit b606f5b

Please sign in to comment.