Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/16/11 18:25:47 (13 years ago)
Author:
mkommend
Message:

#1715: Added type name to operator shapes.

File:
1 edited

Legend:

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

    r6036 r7199  
    5050      shape.Location = shapeInfo.Location;
    5151      shape.Title = shapeInfo.Title;
     52      shape.TypeName = shapeInfo.TypeName;
    5253      shape.Color = shapeInfo.Color;
    5354      shape.LineColor = shapeInfo.LineColor;
     
    6566    public static void UpdateShape(IOperatorShapeInfo operatorShapeInfo, OperatorShape operatorShape) {
    6667      operatorShape.Title = operatorShapeInfo.Title;
     68      operatorShape.TypeName = operatorShapeInfo.TypeName;
    6769      operatorShape.Color = operatorShapeInfo.Color;
    6870      operatorShape.LineColor = operatorShapeInfo.LineColor;
     
    105107    public static void UpdateShapeInfo(IOperatorShapeInfo operatorShapeInfo, OperatorShape operatorShape) {
    106108      operatorShapeInfo.Title = operatorShape.Title;
     109      operatorShapeInfo.TypeName = operatorShape.TypeName;
    107110      operatorShapeInfo.Color = operatorShape.Color;
    108111      operatorShapeInfo.LineColor = operatorShape.LineColor;
Note: See TracChangeset for help on using the changeset viewer.