Changeset 3441
- Timestamp:
- 04/20/10 15:40:58 (15 years ago)
- Location:
- trunk/sources
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionBubbleChartView.cs
r3432 r3441 81 81 set { base.Content = value; } 82 82 } 83 public override bool ReadOnly {84 get { return base.ReadOnly; }85 set { /*not needed because results are always readonly */}86 }87 83 88 84 protected override void RegisterContentEvents() { … … 291 287 HitTestResult h = this.chart.HitTest(e.X, e.Y); 292 288 if (this.draggedRun != null && h.ChartElementType != ChartElementType.DataPoint) { 293 //this.isDragOperationInProgress = true;289 this.isDragOperationInProgress = true; 294 290 DataObject data = new DataObject(); 295 291 data.SetData("Type", draggedRun.GetType()); -
trunk/sources/HeuristicLab.Optimization/3.3/RunCollection.cs
r3431 r3441 90 90 if (value == null) 91 91 return false; 92 if (!parameterNames.Contains(name) &&93 92 if (!parameterNames.Contains(name)) { 93 // && viewableDataTypes.Any(x => x.IsAssignableFrom(value.GetType()))) { 94 94 parameterNames.Add(name); 95 95 return true; … … 100 100 if (value == null) 101 101 return false; 102 if (!resultNames.Contains(name) &&103 102 if (!resultNames.Contains(name)) { 103 // && viewableDataTypes.Any(x => x.IsAssignableFrom(value.GetType()))) { 104 104 resultNames.Add(name); 105 105 return true;
Note: See TracChangeset
for help on using the changeset viewer.