Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/operation/ModifyActionableItemsBlam.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/operation/ModifyActionableItemsBlam.java b/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/operation/ModifyActionableItemsBlam.java
index 0200902a38b..9b80a0141a5 100644
--- a/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/operation/ModifyActionableItemsBlam.java
+++ b/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/operation/ModifyActionableItemsBlam.java
@@ -141,20 +141,21 @@ public class ModifyActionableItemsBlam extends AbstractBlam {
wfTree.getViewer().setLabelProvider(new AtsObjectLabelProvider());
wfTree.getViewer().setSorter(new AtsObjectNameSorter());
wfTree.setLayoutData(data);
- wfTree.getViewer().addSelectionChangedListener(new ModificationListener());
+ wfTree.getViewer().addPostSelectionChangedListener(new ModificationListener());
otherTree = new FilteredCheckboxTree(treeComp, SWT.READ_ONLY | SWT.H_SCROLL | SWT.V_SCROLL | SWT.BORDER);
otherTree.getViewer().setContentProvider(new ArrayTreeContentProvider());
otherTree.getViewer().setLabelProvider(new AtsObjectLabelProvider());
otherTree.getViewer().setSorter(new AtsObjectNameSorter());
otherTree.setLayoutData(data);
+ otherTree.setEnabled(false);
newTree = new FilteredCheckboxTree(treeComp, SWT.CHECK | SWT.MULTI | SWT.H_SCROLL | SWT.V_SCROLL | SWT.BORDER);
newTree.getViewer().setContentProvider(new AITreeContentProvider(Active.Active));
newTree.getViewer().setLabelProvider(new AtsObjectLabelProvider());
newTree.getViewer().setSorter(new AtsObjectNameSorter());
newTree.setLayoutData(data);
- newTree.getViewer().addSelectionChangedListener(new ModificationListener());
+ newTree.getViewer().addPostSelectionChangedListener(new ModificationListener());
resultsText = new XText("Results if run");
resultsText.setVerticalLabel(true);

Back to the top