Skip to content

Commit

Permalink
Bugfix: FNT Audio desel force selecting
Browse files Browse the repository at this point in the history
  • Loading branch information
dreamsyntax committed Nov 26, 2023
1 parent 6986bbd commit 475f3fa
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions ShadowRando/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1784,12 +1784,14 @@ private void randomFNT_CheckedChanged(object sender, EventArgs e)

private void FNTCheckBox_OnlyLinkedAudio_CheckedChanged(object sender, EventArgs e)
{
FNTCheckBox_GiveAudioToNoLinkedAudio.Checked = !FNTCheckBox_OnlyLinkedAudio.Checked;
if (FNTCheckBox_OnlyLinkedAudio.Checked)
FNTCheckBox_GiveAudioToNoLinkedAudio.Checked = false;
}

private void FNTCheckBox_GiveAudioToNoLinkedAudio_CheckedChanged(object sender, EventArgs e)
{
FNTCheckBox_OnlyLinkedAudio.Checked = !FNTCheckBox_GiveAudioToNoLinkedAudio.Checked;
if (FNTCheckBox_GiveAudioToNoLinkedAudio.Checked)
FNTCheckBox_OnlyLinkedAudio.Checked = false;
}

static int CalculateSeed(string seedString)
Expand Down

0 comments on commit 475f3fa

Please sign in to comment.