- Timestamp:
- 03/03/15 11:18:07 (10 years ago)
- Location:
- branches/HeuristicLab.DatasetRefactor/sources
- Files:
-
- 4 deleted
- 5 edited
- 2 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.DatasetRefactor/sources
- Property svn:mergeinfo changed
/trunk/sources merged: 12037,12041,12057,12059-12060,12067,12069-12070,12072,12074,12076-12078,12085,12087-12091,12093,12095-12096,12100-12104
- Property svn:mergeinfo changed
-
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Optimization.Views/3.3/HeuristicLab.Optimization.Views-3.3.csproj
r12031 r12105 148 148 <DependentUpon>CreateNewSingleEncodingDialog.cs</DependentUpon> 149 149 </Compile> 150 <Compile Include="IS ingleObjectiveSolutionSimilarityCalculatorView.cs">151 <SubType>UserControl</SubType> 152 </Compile> 153 <Compile Include="IS ingleObjectiveSolutionSimilarityCalculatorView.Designer.cs">154 <DependentUpon>IS ingleObjectiveSolutionSimilarityCalculatorView.cs</DependentUpon>150 <Compile Include="ISolutionSimilarityCalculatorView.cs"> 151 <SubType>UserControl</SubType> 152 </Compile> 153 <Compile Include="ISolutionSimilarityCalculatorView.Designer.cs"> 154 <DependentUpon>ISolutionSimilarityCalculatorView.cs</DependentUpon> 155 155 </Compile> 156 156 <Compile Include="ExperimentListView.cs"> … … 159 159 <Compile Include="ExperimentListView.Designer.cs"> 160 160 <DependentUpon>ExperimentListView.cs</DependentUpon> 161 </Compile>162 <Compile Include="ISimilarityCalculatorView.cs">163 <SubType>UserControl</SubType>164 </Compile>165 <Compile Include="ISimilarityCalculatorView.Designer.cs">166 <DependentUpon>ISimilarityCalculatorView.cs</DependentUpon>167 161 </Compile> 168 162 <Compile Include="MultiEncodingView.cs"> -
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionViews/RunCollectionBoxPlotView.cs
r12031 r12105 122 122 if (InvokeRequired) 123 123 Invoke(new EventHandler(Content_Reset), sender, e); 124 else {124 else if (!suppressUpdates) { 125 125 UpdateDataPoints(); 126 126 UpdateAxisLabels(); … … 376 376 Axis yAxis = this.chart.ChartAreas[BoxPlotChartAreaName].AxisY; 377 377 int axisDimensionCount = Enum.GetNames(typeof(AxisDimension)).Count(); 378 //mkommend: combobox.SelectedIndex could not be used as this changes during ho overing over possible values378 //mkommend: combobox.SelectedIndex could not be used as this changes during hovering over possible values 379 379 var xSAxisSelectedIndex = xAxisValue == null ? 0 : xAxisComboBox.Items.IndexOf(xAxisValue); 380 380 var ySAxisSelectedIndex = yAxisValue == null ? 0 : xAxisComboBox.Items.IndexOf(yAxisValue); -
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionViews/RunCollectionBubbleChartView.cs
r12031 r12105 262 262 263 263 private void Content_Reset(object sender, EventArgs e) { 264 if (suppressUpdates) return; 264 265 if (InvokeRequired) 265 266 Invoke(new EventHandler(Content_Reset), sender, e); -
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionViews/RunCollectionTableView.cs
r12031 r12105 117 117 } 118 118 119 protected override void UpdateData() { 120 if (suppressUpdates) return; 121 base.UpdateData(); 122 } 123 119 124 protected override void UpdateColumnHeaders() { 120 125 HashSet<string> visibleColumnNames = new HashSet<string>(dataGridView.Columns.OfType<DataGridViewColumn>() … … 145 150 else { 146 151 suppressUpdates = Content.UpdateOfRunsInProgress; 147 if (!suppressUpdates) UpdateRowAttributes(); 152 if (!suppressUpdates) { 153 UpdateRowAttributes(); 154 UpdateData(); 155 } 148 156 } 149 157 }
Note: See TracChangeset
for help on using the changeset viewer.