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 941845d commit f83243fCopy full SHA for f83243f
rcp/org.eclipse.rcptt.ui/src/org/eclipse/rcptt/ui/tags/TagsView.java
@@ -149,6 +149,9 @@ public void focusLost(FocusEvent e) {
149
Job setInputJob = new UIJob(tagsViewer.getControl().getDisplay(), "Initialize tags view") {
150
@Override
151
public IStatus runInUIThread(IProgressMonitor monitor) {
152
+ if (tagsViewer.getControl().isDisposed()) {
153
+ return Status.OK_STATUS;
154
+ }
155
final TagsRegistry tagsRegistry = Q7UIPlugin.getDefault().getTags();
156
tagsLabelListener = new EContentAdapter() {
157
0 commit comments