Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/16/21 15:26:50 (3 years ago)
Author:
gkronber
Message:

#3073 bugfixing

Location:
trunk/HeuristicLab.Problems.DataAnalysis.Views/3.4
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/HeuristicLab.Problems.DataAnalysis.Views/3.4/HeuristicLab.Problems.DataAnalysis.Views-3.4.csproj

    r17902 r17906  
    102102      <HintPath>..\..\bin\ALGLIB-3.7.0.dll</HintPath>
    103103      <Private>False</Private>
     104    </Reference>
     105    <Reference Include="HEAL.Attic, Version=1.5.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
     106      <SpecificVersion>False</SpecificVersion>
     107      <HintPath>..\..\bin\HEAL.Attic.dll</HintPath>
    104108    </Reference>
    105109    <Reference Include="System" />
  • trunk/HeuristicLab.Problems.DataAnalysis.Views/3.4/Regression/ShapeConstraintsView.cs

    r17902 r17906  
    5050      this.shapeConstraintsView.Content = Content;
    5151      UpdateControl();
     52      errorOutput.Text = "";
    5253    }
    5354
     
    7778    protected override void SetEnabledStateOfControls() {
    7879      constraintsInput.Enabled = Content != null && !Locked && !ReadOnly;
     80      parseBtn.Enabled = Content != null && !Locked && !ReadOnly;
    7981    }
    8082
     
    9092          errorOutput.ForeColor = Color.DarkGreen;
    9193        } catch (ArgumentException ex) {
    92           errorOutput.Text = ex.Message.Replace("Parameter name", "@Line");
     94          errorOutput.Text = ex.Message;
    9395          errorOutput.ForeColor = Color.DarkRed;
    9496        } finally {
Note: See TracChangeset for help on using the changeset viewer.