Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/20/13 13:31:31 (12 years ago)
Author:
sforsten
Message:

#2016:

  • Content.UpdateOfRunsInProgress is set to true while updating the colours of the data points in RunCollectionBubbleChartView
  • removed a useless line in RunCollectionBoxPlotView
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionViews/RunCollectionBubbleChartView.cs

    r9235 r9236  
    768768      double maxValue = runs.Max(r => r.Value.Value);
    769769      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;
    771772      if (range.IsAlmost(0)) {
    772773        Color c = ColorGradient.Colors[0];
     
    779780        }
    780781      }
     782      Content.UpdateOfRunsInProgress = false;
    781783    }
    782784    #endregion
Note: See TracChangeset for help on using the changeset viewer.