Changeset 2869
- Timestamp:
- 02/25/10 18:03:03 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Operators.Views.GraphVisualization/3.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Operators.Views.GraphVisualization/3.3/Model/OperatorGraphVisualizationInfo.cs
r2868 r2869 228 228 if (opParam.Value == null) 229 229 this.connections.Remove(connectionFrom); 230 else 230 else { 231 if (!this.shapeInfoMapping.ContainsFirst(opParam.Value)) 232 this.AddOperator(opParam.Value); 231 233 this.connections[connectionFrom] = this.shapeInfoMapping.GetByFirst(opParam.Value); 234 } 232 235 } 233 236 } -
trunk/sources/HeuristicLab.Operators.Views.GraphVisualization/3.3/OperatorGraphView.cs
r2868 r2869 37 37 38 38 namespace HeuristicLab.Operators.Views.GraphVisualization { 39 39 [View("Operator Graph Visualization")] 40 40 [Content(typeof(OperatorGraph), false)] 41 41 public partial class OperatorGraphView : ContentView {
Note: See TracChangeset
for help on using the changeset viewer.