diff options
| author | a1xd <[email protected]> | 2021-01-14 12:44:57 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-01-14 12:44:57 -0500 |
| commit | c1cd6664a4479ff2210d2461dac5ad84c514bb75 (patch) | |
| tree | af13c3a7cd3f2a3f4d1f88121b06db259c0a9bf1 /grapher/grapher.csproj | |
| parent | Merge pull request #64 from Tatsujinichi/master (diff) | |
| download | rawaccel-c1cd6664a4479ff2210d2461dac5ad84c514bb75.tar.xz rawaccel-c1cd6664a4479ff2210d2461dac5ad84c514bb75.zip | |
show custom dialog on bad input (#63)
* show custom dialog on bad input
fixes #62
* Update MessageDialog constructor args
Diffstat (limited to 'grapher/grapher.csproj')
| -rw-r--r-- | grapher/grapher.csproj | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/grapher/grapher.csproj b/grapher/grapher.csproj index 2788cca..35d7e0c 100644 --- a/grapher/grapher.csproj +++ b/grapher/grapher.csproj @@ -81,6 +81,12 @@ <Compile Include="Constants\Constants.cs" /> <Compile Include="Layouts\MotivityLayout.cs" /> <Compile Include="Layouts\NaturalGainLayout.cs" /> + <Compile Include="MessageDialog.cs"> + <SubType>Form</SubType> + </Compile> + <Compile Include="MessageDialog.Designer.cs"> + <DependentUpon>MessageDialog.cs</DependentUpon> + </Compile> <Compile Include="Models\AccelGUIFactory.cs" /> <Compile Include="Models\Calculations\AccelCalculator.cs" /> <Compile Include="Models\Calculations\AccelChartData.cs" /> @@ -133,6 +139,7 @@ <Compile Include="Properties\AssemblyInfo.cs" /> <EmbeddedResource Include="AboutBox.resx"> <DependentUpon>AboutBox.cs</DependentUpon> + <SubType>Designer</SubType> </EmbeddedResource> <EmbeddedResource Include="Form1.resx"> <DependentUpon>Form1.cs</DependentUpon> |