Free cookie consent management tool by TermsFeed Policy Generator

Changeset 5214


Ignore:
Timestamp:
01/05/11 02:48:47 (13 years ago)
Author:
swagner
Message:

Enabled Breakpoint flag for each operator in every algorithm (#1362)

Location:
trunk/sources
Files:
4 edited

Legend:

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

    r5042 r5214  
    118118    protected override void SetEnabledStateOfControls() {
    119119      base.SetEnabledStateOfControls();
     120      breakpointCheckBox.Enabled = Content != null && !Locked;
    120121      parameterCollectionView.Enabled = Content != null;
    121122      assembliesTreeView.Enabled = Content != null && !ReadOnly;
     
    202203      try {
    203204        ProgrammableOperator.Compile();
    204       } catch (Exception ex) {
     205      }
     206      catch (Exception ex) {
    205207        ErrorHandling.ShowErrorDialog(this, ex);
    206208      }
  • trunk/sources/HeuristicLab.Operators.Views/3.3/MultiOperatorView.cs

    r4435 r5214  
    7777    protected override void SetEnabledStateOfControls() {
    7878      base.SetEnabledStateOfControls();
    79       breakpointCheckBox.Enabled = Content != null && !ReadOnly;
     79      breakpointCheckBox.Enabled = Content != null && !Locked;
    8080      operatorListView.Enabled = Content != null;
    8181      parameterCollectionView.Enabled = Content != null;
  • trunk/sources/HeuristicLab.Operators.Views/3.3/OperatorView.cs

    r4477 r5214  
    7474    protected override void SetEnabledStateOfControls() {
    7575      base.SetEnabledStateOfControls();
    76       breakpointCheckBox.Enabled = Content != null && !ReadOnly;
     76      breakpointCheckBox.Enabled = Content != null && !Locked;
    7777    }
    7878
  • trunk/sources/HeuristicLab.Operators.Views/3.3/ValuesCollectorView.cs

    r4435 r5214  
    7777    protected override void SetEnabledStateOfControls() {
    7878      base.SetEnabledStateOfControls();
    79       breakpointCheckBox.Enabled = Content != null && !ReadOnly;
     79      breakpointCheckBox.Enabled = Content != null && !Locked;
    8080      collectedValuesView.Enabled = Content != null;
    8181      parameterCollectionView.Enabled = Content != null;
Note: See TracChangeset for help on using the changeset viewer.