Changeset 10871 for branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/HistogramView.cs
- Timestamp:
- 05/21/14 12:48:42 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/HistogramView.cs
r10867 r10871 24 24 { 25 25 logic = Content.ChartLogic; 26 Content.AllInOneMode = false; 27 26 28 27 classifierComboBox.Items.Clear(); 29 28 … … 34 33 } 35 34 36 if (classifierComboBox.SelectedIndex == -1) { 37 classifierComboBox.SelectedIndex = 0; 35 if (classifierComboBox.SelectedItem == null) { 36 // classifierComboBox.SelectedIndex = 0; 37 38 classifierComboBox.SelectedIndex = Content.ClassifierVariableIndex; 38 39 } 39 40 } … … 59 60 } 60 61 62 Content.ClassifierVariableIndex = classifierComboBox.SelectedIndex; 63 61 64 GenerateChart(); 62 65 }
Note: See TracChangeset
for help on using the changeset viewer.