Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/06/10 04:48:03 (14 years ago)
Author:
swagner
Message:

Operator architecture refactoring (#95)

  • implemented reviewers' comments on version r2917.
File:
1 edited

Legend:

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

    r2934 r2949  
    8686          IOperatorShapeInfo shapeInfo = shape.Tag as IOperatorShapeInfo;
    8787          IOperator op = this.VisualizationInfo.GetOperatorForShapeInfo(shapeInfo);
     88          this.detailsViewHost.ViewType = null;
    8889          this.detailsViewHost.Content = op;
    8990          return;
     
    103104          if (connectorName != "Predecessor") {
    104105            IParameter parameter = op.Parameters.Where(p => p.Name == connectorName).First();
     106            this.detailsViewHost.ViewType = null;
    105107            this.detailsViewHost.Content = parameter;
    106108            return;
Note: See TracChangeset for help on using the changeset viewer.