Changeset 3181
- Timestamp:
- 03/22/10 16:58:46 (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/GraphVisualizationInfoView.cs
r3171 r3181 311 311 if (operatorShape != null) 312 312 shapeInfo.Collapsed = operatorShape.Collapsed; 313 313 314 314 this.graphVisualization.Invalidate(); 315 315 this.causedUpdateOfShapeInfo = false; … … 330 330 string connectorName = connectorFrom.Name; 331 331 332 this.Content.AddConnection(shapeInfoFrom, connectorName, shapeInfoTo); 332 if (shapeFrom != shapeTo) //avoid self references 333 this.Content.AddConnection(shapeInfoFrom, connectorName, shapeInfoTo); 333 334 } 334 335 } -
trunk/sources/HeuristicLab.Operators.Views.GraphVisualization/3.3/Model/OperatorShape.cs
r3169 r3181 223 223 if (titleSize.Height + 10 > Rectangle.Height) { 224 224 headerHeight = (int)titleSize.Height + 10; 225 mRectangle.Height = headerHeight;225 this.UpdateLabels(); 226 226 } 227 227
Note: See TracChangeset
for help on using the changeset viewer.