Free cookie consent management tool by TermsFeed Policy Generator

Changeset 3906


Ignore:
Timestamp:
06/08/10 21:58:51 (14 years ago)
Author:
mkommend
Message:

forgot to update ProgrammeableOperatorView (ticket #1020)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Operators.Programmable/3.3/ProgrammableOperatorView.cs

    r3903 r3906  
    9797        parameterCollectionView.Content = ProgrammableOperator.Parameters;
    9898      }
    99       SetEnabledStateOfControls();
    100     }
    101 
    102     protected override void OnReadOnlyChanged() {
    103       base.OnReadOnlyChanged();
    104       SetEnabledStateOfControls();
    105     }
    106 
    107     private void SetEnabledStateOfControls() {
     99    }
     100
     101    protected override void SetEnabledStateOfControls() {
     102      base.SetEnabledStateOfControls();
    108103      parameterCollectionView.Enabled = Content != null;
    109104      assembliesTreeView.Enabled = Content != null && !ReadOnly;
Note: See TracChangeset for help on using the changeset viewer.