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/OperatorShape.cs

    r3386 r3422  
    206206      this.Children.Add(expandIconMaterial);
    207207
    208       this.predecessor = this.CreateConnector("Predecessor", new Point(Rectangle.Left, Center.Y));
     208      this.predecessor = this.CreateConnector(OperatorShapeInfoFactory.PredecessorConnector, new Point(Rectangle.Left, Center.Y));
    209209      this.Connectors.Add(predecessor);
    210210
    211       this.successor = this.CreateConnector("Successor", (new Point(Rectangle.Right, Center.Y)));
     211      this.successor = this.CreateConnector(OperatorShapeInfoFactory.SuccessorConnector, (new Point(Rectangle.Right, Center.Y)));
    212212      this.Connectors.Add(successor);
    213213    }
Note: See TracChangeset for help on using the changeset viewer.