Allow splitting book only if AllowLibationFixup is true.

This commit is contained in:
Michael Bucari-Tovo 2021-10-06 13:43:01 -06:00
parent 40520b89d1
commit a3fac3441c

View File

@ -84,10 +84,12 @@ namespace LibationWinForms.Dialogs
{
convertLosslessRb.Enabled = allowLibationFixupCbox.Checked;
convertLossyRb.Enabled = allowLibationFixupCbox.Checked;
splitFilesByChapterCbox.Enabled = allowLibationFixupCbox.Checked;
if (!allowLibationFixupCbox.Checked)
{
convertLosslessRb.Checked = true;
splitFilesByChapterCbox.Checked = false;
}
}