Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/06/10 03:30:37 (15 years ago)
Author:
swagner
Message:

Operator architecture refactoring (#95)

  • implemented reviewers' comments on version r2917.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Core.Views/3.3/VariableView.cs

    r2917 r2948  
    9494        dataTypeTextBox.Text = Content.Value == null ? "-" : Content.Value.GetType().GetPrettyName();
    9595        dataTypeTextBox.Enabled = Content.Value != null;
    96         setValueButton.Enabled = Content.Value == null;
     96        setValueButton.Enabled = true;
    9797        clearValueButton.Enabled = Content.Value != null;
    9898        valueGroupBox.Enabled = true;
     
    107107        dataTypeTextBox.Text = Content.Value == null ? "-" : Content.Value.GetType().GetPrettyName();
    108108        dataTypeTextBox.Enabled = Content.Value != null;
    109         setValueButton.Enabled = Content.Value == null;
    110109        clearValueButton.Enabled = Content.Value != null;
    111110        viewHost.Content = Content.Value;
Note: See TracChangeset for help on using the changeset viewer.