Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/27/13 13:31:32 (11 years ago)
Author:
bburlacu
Message:

#1772: Updated LineageExplorerView and added functionality for highlighting common fragments in a given tree. Fixed view layout and element anchoring.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.EvolutionaryTracking/HeuristicLab.EvolutionaryTracking.Views/3.4/GenealogyGraphView.cs

    r9239 r9250  
    105105      symbolicExpressionTreeChart.Tree = genealogyGraphNode.SymbolicExpressionTree;
    106106      if (genealogyGraphNode.InEdges == null) return;
    107       var arc = genealogyGraphNode.InEdges.First(x => x.Source != x.Target && x.Data != null);
    108       if (arc == null) return;
     107      var arc = genealogyGraphNode.InEdges.First(x => x.Source != x.Target);
     108      if (arc == null || arc.Data == null) return;
    109109      var fragment = (IFragment)arc.Data;
    110110      if (fragment.Root == null) return;
Note: See TracChangeset for help on using the changeset viewer.