Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorddunne2010-06-09 21:59:04 +0000
committerddunne2010-06-09 21:59:04 +0000
commitf936442a8664241821481167aa17f394b84b4cfa (patch)
treec8d144231a20f7deb4a66dad72cecb28d366f560
parent8944e7ab088cb90412f05e4c782e23b1b4270730 (diff)
downloadorg.eclipse.osee-f936442a8664241821481167aa17f394b84b4cfa.tar.gz
org.eclipse.osee-f936442a8664241821481167aa17f394b84b4cfa.tar.xz
org.eclipse.osee-f936442a8664241821481167aa17f394b84b4cfa.zip
fixed widget disposed exception
-rw-r--r--plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/world/WorldXViewer.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/world/WorldXViewer.java b/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/world/WorldXViewer.java
index 383dcac1acc..12452289ec8 100644
--- a/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/world/WorldXViewer.java
+++ b/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/world/WorldXViewer.java
@@ -1077,6 +1077,7 @@ public class WorldXViewer extends XViewer implements ISelectedAtsArtifacts, IArt
@Override
public void handleReloadEvent(Sender sender, final Collection<? extends Artifact> artifacts) throws OseeCoreException {
+ if (!Widgets.isAccessible(getTree())) return;
if (!artifacts.iterator().next().getBranch().equals(AtsUtil.getAtsBranch())) {
return;
}

Back to the top