Skip to content
Snippets Groups Projects
Commit 894be5ed authored by Johannes Eder's avatar Johannes Eder
Browse files

connection fix

refs 2446
parent adc4eb29
No related branches found
No related tags found
No related merge requests found
......@@ -52,7 +52,7 @@ public abstract class AllocationConnectionEditPartBase<T extends ConnectionSegme
EditPart source = getSource();
// prevent connections from being shown in the wrong hierarchical layers
if(target == null || source == null || !target.isActive() || !source.isActive()) {
if(target == null || source == null) {
figure.setVisible(false);
} else {
figure.setVisible(true);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment