Skip to content

Commit

Permalink
disabled extract levels button if in quick wild check mode
Browse files Browse the repository at this point in the history
  • Loading branch information
cadon committed Nov 23, 2021
1 parent 14e2281 commit f43220a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ARKBreedingStats/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1609,8 +1609,11 @@ private void numericUpDownImprintingBonusExtractor_ValueChanged(object sender, E
private void checkBoxQuickWildCheck_CheckedChanged(object sender, EventArgs e)
{
UpdateQuickTamingInfo();
if (cbQuickWildCheck.Checked)
var quickCheckMode = cbQuickWildCheck.Checked;
if (quickCheckMode)
ExtractionFailed();
btExtractLevels.Enabled = !quickCheckMode;
cbQuickWildCheck.BackColor = quickCheckMode ? Color.Orange : Color.Transparent;
}

private void onlinehelpToolStripMenuItem_Click(object sender, EventArgs e)
Expand Down

0 comments on commit f43220a

Please sign in to comment.