- Timestamp:
- 10/27/17 11:14:34 (7 years ago)
- Location:
- stable
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk/sources merged: 15395
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Problems.DataAnalysis.Views
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Problems.DataAnalysis.Views merged: 15395
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Problems.DataAnalysis.Views/3.4/Solution Views/DataAnalysisSolutionView.cs
r14848 r15435 142 142 var solution = (IDataAnalysisSolution)Content.Clone(); 143 143 problemData.AdjustProblemDataProperties(solution.ProblemData); 144 144 145 solution.ProblemData = problemData; 145 146 if (!solution.Name.EndsWith(" with loaded problemData")) … … 213 214 214 215 protected override void itemsListView_DragDrop(object sender, DragEventArgs e) { 215 if (e.Effect == DragDropEffects.None) return;216 if (e.Effect != DragDropEffects.Copy) return; 216 217 217 218 IDataAnalysisProblemData problemData = null; … … 227 228 if (problemData == null) return; 228 229 230 problemData = (IDataAnalysisProblemData)problemData.Clone(); 231 229 232 try { 230 233 problemData.AdjustProblemDataProperties(Content.ProblemData);
Note: See TracChangeset
for help on using the changeset viewer.