From a3fac3441c0b9657b96a522ac70ee82e7c472121 Mon Sep 17 00:00:00 2001 From: Michael Bucari-Tovo Date: Wed, 6 Oct 2021 13:43:01 -0600 Subject: [PATCH] Allow splitting book only if AllowLibationFixup is true. --- LibationWinForms/Dialogs/SettingsDialog.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/LibationWinForms/Dialogs/SettingsDialog.cs b/LibationWinForms/Dialogs/SettingsDialog.cs index 9f686eb2..c96e1664 100644 --- a/LibationWinForms/Dialogs/SettingsDialog.cs +++ b/LibationWinForms/Dialogs/SettingsDialog.cs @@ -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; } }