Changeset 12116 for trunk/sources
- Timestamp:
- 03/04/15 10:05:29 (10 years ago)
- Location:
- trunk/sources/HeuristicLab.Analysis.Statistics.Views/3.3
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Analysis.Statistics.Views/3.3/CorrelationView.cs
r12012 r12116 97 97 98 98 void Content_ColumnsChanged(object sender, EventArgs e) { 99 UpdateUI(); 99 if (!suppressUpdates) { 100 UpdateUI(); 101 } 100 102 } 101 103 -
trunk/sources/HeuristicLab.Analysis.Statistics.Views/3.3/SampleSizeInfluenceView.cs
r12012 r12116 174 174 Invoke(new EventHandler(Content_ColumnNamesChanged), sender, e); 175 175 else { 176 UpdateComboBoxes(); 176 if (!suppressUpdates) { 177 UpdateComboBoxes(); 178 } 177 179 } 178 180 } -
trunk/sources/HeuristicLab.Analysis.Statistics.Views/3.3/StatisticalTestsView.cs
r12012 r12116 109 109 110 110 void Content_ColumnsChanged(object sender, EventArgs e) { 111 RebuildDataTable(); 111 if (!Content.UpdateOfRunsInProgress) { 112 RebuildDataTable(); 113 } 112 114 } 113 115 … … 291 293 return; 292 294 293 if (data != null ) {295 if (data != null && data.All(x => x != null)) { 294 296 MainFormManager.GetMainForm<HeuristicLab.MainForm.WindowsForms.MainForm>() 295 297 .AddOperationProgressToView(this, "Calculating...");
Note: See TracChangeset
for help on using the changeset viewer.