Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/08/10 14:09:22 (14 years ago)
Author:
mkommend
Message:

forgot to commit RunCollectionViews (ticket #970)

File:
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionComparisonConstraintView.cs

    r3713 r3718  
    5252          }
    5353        }
    54         if (Content.ConstraintColumn >= 0) {
    55           this.cmbConstraintColumn.SelectedItem = (matrix.ColumnNames.ElementAt(Content.ConstraintColumn));
     54         if (!string.IsNullOrEmpty(Content.ConstraintColumn)) {
     55          this.cmbConstraintColumn.SelectedItem = Content.ConstraintColumn;
    5656          if (Content.ConstraintData != null)
    5757            txtConstraintData.Text = Content.ConstraintData.GetValue();
Note: See TracChangeset for help on using the changeset viewer.