- Timestamp:
- 03/16/21 15:26:50 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/HeuristicLab.Problems.DataAnalysis.Views/3.4/Regression/ShapeConstraintsView.cs
r17902 r17906 50 50 this.shapeConstraintsView.Content = Content; 51 51 UpdateControl(); 52 errorOutput.Text = ""; 52 53 } 53 54 … … 77 78 protected override void SetEnabledStateOfControls() { 78 79 constraintsInput.Enabled = Content != null && !Locked && !ReadOnly; 80 parseBtn.Enabled = Content != null && !Locked && !ReadOnly; 79 81 } 80 82 … … 90 92 errorOutput.ForeColor = Color.DarkGreen; 91 93 } catch (ArgumentException ex) { 92 errorOutput.Text = ex.Message .Replace("Parameter name", "@Line");94 errorOutput.Text = ex.Message; 93 95 errorOutput.ForeColor = Color.DarkRed; 94 96 } finally {
Note: See TracChangeset
for help on using the changeset viewer.