- Timestamp:
- 05/11/10 13:13:34 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Operators.Views.GraphVisualization/3.3/OperatorGraphVisualization/OperatorGraphView.cs
r3764 r3765 182 182 this.initialToolStripMenuItem.Enabled = !ReadOnly && !Locked; 183 183 this.breakPointToolStripMenuItem.Checked = op.Breakpoint; 184 this.breakPointToolStripMenuItem.Enabled = ! ReadOnly && !Locked;184 this.breakPointToolStripMenuItem.Enabled = !Locked; 185 185 } 186 186 } … … 199 199 200 200 private void initialOperatorToolStripMenuItem_Click(object sender, EventArgs e) { 201 if (!ReadOnly) {202 201 IOperatorShapeInfo shapeInfo = this.shapeContextMenu.Tag as IOperatorShapeInfo; 203 202 if (this.VisualizationInfo.InitialShape == shapeInfo) … … 205 204 else 206 205 this.VisualizationInfo.InitialShape = shapeInfo; 207 }208 206 } 209 207 210 208 private void breakPointToolStripMenuItem_Click(object sender, EventArgs e) { 211 if (!ReadOnly) {212 209 IOperatorShapeInfo shapeInfo = this.shapeContextMenu.Tag as IOperatorShapeInfo; 213 210 if (shapeInfo != null) { … … 215 212 op.Breakpoint = !op.Breakpoint; 216 213 } 217 }218 214 } 219 215 #endregion
Note: See TracChangeset
for help on using the changeset viewer.