Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/19/10 22:07:24 (14 years ago)
Author:
mkommend
Message:
  • corrected bugs in operator graph visualization (ticket #867)
  • changed multi call operators in graph visualization (ticket #979)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Operators.Views.GraphVisualization/3.3/OperatorGraphVisualization/OperatorShapeInfo.cs

    r3386 r3422  
    160160      shape.Collapsed = this.Collapsed;
    161161      foreach (string connectorName in this.connectorNames)
    162         shape.AddConnector(connectorName);
     162        if (connectorName != OperatorShapeInfoFactory.SuccessorConnector && connectorName != OperatorShapeInfoFactory.PredecessorConnector)
     163          shape.AddConnector(connectorName);
    163164
    164165      shape.UpdateLabels(this.labels);
     
    191192        operatorShape.RemoveConnector(oldConnectorNames[j]);
    192193
    193       //add new connectors
     194      //add new connectors except successor and connector
    194195      for (; i < this.connectorNames.Count; i++)
     196        if (this.connectorNames[i] != OperatorShapeInfoFactory.SuccessorConnector && this.connectorNames[i] != OperatorShapeInfoFactory.PredecessorConnector)
    195197        operatorShape.AddConnector(this.connectorNames[i]);
    196198
Note: See TracChangeset for help on using the changeset viewer.