Changeset 8981 for trunk/sources
- Timestamp:
- 11/30/12 23:46:28 (12 years ago)
- Location:
- trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/InteractiveSymbolicExpressionTreeChart.cs
r8980 r8981 170 170 } 171 171 OnSymbolicExpressionTreeChanged(sender, e); 172 currSelected = null; 172 173 } 173 174 } … … 359 360 if (currSelected != null) { 360 361 currSelected.LineColor = originalNodes.ContainsKey(currSelected.SymbolicExpressionTreeNode) ? Color.DodgerBlue : Color.Black; 362 RepaintNode(currSelected); 361 363 } 362 364 currSelected = visualTreeNode; -
trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/TreeEditDialogs/SymbolicExpressionTreeNodeInsertDialog.Designer.cs
r8935 r8981 148 148 // okButton 149 149 // 150 this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK; 150 151 this.okButton.Location = new System.Drawing.Point(12, 112); 151 152 this.okButton.Name = "okButton"; -
trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/TreeEditDialogs/SymbolicExpressionTreeNodeInsertDialog.cs
r8935 r8981 109 109 public event EventHandler DialogValidated; 110 110 private void OnDialogValidated(object sender, EventArgs e) { 111 DialogResult = DialogResult.OK; 111 112 var dialogValidated = DialogValidated; 112 113 if (dialogValidated != null)
Note: See TracChangeset
for help on using the changeset viewer.