Changeset 5007
- Timestamp:
- 12/01/10 10:43:42 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionConstraintView.cs
r4435 r5007 43 43 cmbConstraintColumn.Items.Clear(); 44 44 cmbConstraintOperation.Items.Clear(); 45 chbActive.Checked = false; 45 46 46 if (Content != null) { 47 47 cmbConstraintOperation.Items.AddRange(Content.AllowedConstraintOperations.ToArray()); … … 50 50 else if (cmbConstraintOperation.Items.Count != 0) 51 51 cmbConstraintOperation.SelectedIndex = 0; 52 this.UpdateColumnComboBox();52 UpdateColumnComboBox(); 53 53 chbActive.Checked = Content.Active; 54 this.ReadOnly = Content.Active; 55 } 54 ReadOnly = Content.Active; 55 } else 56 chbActive.Checked = false; 56 57 } 57 58
Note: See TracChangeset
for help on using the changeset viewer.