Changeset 9236
- Timestamp:
- 02/20/13 13:31:31 (12 years ago)
- Location:
- trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionViews
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionViews/RunCollectionBoxPlotView.cs
r9235 r9236 138 138 this.Invoke(new EventHandler(run_Changed), sender, e); 139 139 else if (!suppressUpdates) { 140 IRun run = (IRun)sender;141 140 UpdateDataPoints(); 142 141 } -
trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionViews/RunCollectionBubbleChartView.cs
r9235 r9236 768 768 double maxValue = runs.Max(r => r.Value.Value); 769 769 double range = maxValue - minValue; 770 770 // UpdateOfRunsInProgress has to be set to true, otherwise run_Changed is called all the time (also in other views) 771 Content.UpdateOfRunsInProgress = true; 771 772 if (range.IsAlmost(0)) { 772 773 Color c = ColorGradient.Colors[0]; … … 779 780 } 780 781 } 782 Content.UpdateOfRunsInProgress = false; 781 783 } 782 784 #endregion
Note: See TracChangeset
for help on using the changeset viewer.