Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/19/10 19:43:05 (14 years ago)
Author:
mkommend
Message:

Adjusted the SetEnabledStateOfControls method in all views, added the Enabled property into the IView interface and adapted the ViewHost, View and ContentView class (ticket #1155).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Operators.Views.GraphVisualization/3.3/OperatorGraphVisualization/OperatorGraphView.cs

    r4068 r4435  
    8686        screenshotButton.Enabled = true;
    8787        detailsViewHost.Enabled = true;
    88         connectButton.Enabled = !ReadOnly && !Locked;
     88        connectButton.Enabled = !ReadOnly;
    8989      }
    9090    }
     
    168168        this.initialToolStripMenuItem.Enabled = !ReadOnly && !Locked;
    169169        this.breakPointToolStripMenuItem.Checked = op.Breakpoint;
    170         this.breakPointToolStripMenuItem.Enabled = !Locked;
     170        this.breakPointToolStripMenuItem.Enabled = !ReadOnly && !Locked;
    171171      }
    172172    }
Note: See TracChangeset for help on using the changeset viewer.