Skip to content

Commit

Permalink
- Fix setting radio data for FM1 when checking FM2 checkbox (Fixes #5)
Browse files Browse the repository at this point in the history
- Bump version
  • Loading branch information
FalcoGer committed Jan 27, 2024
1 parent aa0c741 commit a2d7f53
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CoordinateConverter/DCS/Tools/FormAH64DTC.cs
Original file line number Diff line number Diff line change
Expand Up @@ -730,7 +730,7 @@ private void nudFM1Freq_ValueChanged(object sender, EventArgs e)
private void cbPresetFM2_Enable_CheckedChanged(object sender, EventArgs e)
{
bool status = (sender as CheckBox).Checked;
GetSelectedPreset().ContainsFM1Data = status;
GetSelectedPreset().ContainsFM2Data = status;

nudFM2Freq.Enabled = status;
ddlFM2CNV.Enabled = status;
Expand Down
2 changes: 1 addition & 1 deletion CoordinateConverter/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ namespace CoordinateConverter
/// <seealso cref="Form" />
public partial class MainForm : Form
{
private readonly GitHub.Version VERSION = new GitHub.Version(0, 6, 8);
private readonly GitHub.Version VERSION = new GitHub.Version(0, 6, 9);

#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
public static readonly Color ERROR_COLOR = Color.Pink;
Expand Down
4 changes: 2 additions & 2 deletions Installer/Installer.wixproj
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<Project Sdk="WixToolset.Sdk/4.0.2">
<PropertyGroup>
<DefineConstants>Version=0.6.8</DefineConstants>
<DefineConstants>Version=0.6.9</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<DefineConstants>Version=0.6.8</DefineConstants>
<DefineConstants>Version=0.6.9</DefineConstants>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="WixToolset.Netfx.wixext" Version="4.0.2" />
Expand Down

0 comments on commit a2d7f53

Please sign in to comment.