Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/07/10 11:42:35 (14 years ago)
Author:
mkommend
Message:

corrected breakpoint checkbox; coupled enabled state to locked instead of readonly (ticket #1001)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Operators.Views/3.3/ValuesCollectorView.cs

    r3566 r3696  
    8181      SetEnabledStateOfControls();
    8282    }
     83    protected override void OnLockedChanged() {
     84      base.OnLockedChanged();
     85      this.SetEnabledStateOfControls();
     86    }
    8387
    8488    private void SetEnabledStateOfControls() {
    85       breakpointCheckBox.Enabled = Content != null && !ReadOnly;
     89      breakpointCheckBox.Enabled = Content != null && !Locked;
    8690      collectedValuesView.Enabled = Content != null;
    8791      parameterCollectionView.Enabled = Content != null;
Note: See TracChangeset for help on using the changeset viewer.