diff --git a/LibationLauncher/LibationLauncher.csproj b/LibationLauncher/LibationLauncher.csproj index 380f88df..21f7a1fa 100644 --- a/LibationLauncher/LibationLauncher.csproj +++ b/LibationLauncher/LibationLauncher.csproj @@ -13,7 +13,7 @@ win-x64 - 5.1.8.1 + 5.1.8.2 diff --git a/LibationWinForms/BookLiberation/AutomatedBackupsForm.cs b/LibationWinForms/BookLiberation/AutomatedBackupsForm.cs index 485e13be..95261858 100644 --- a/LibationWinForms/BookLiberation/AutomatedBackupsForm.cs +++ b/LibationWinForms/BookLiberation/AutomatedBackupsForm.cs @@ -6,18 +6,9 @@ namespace LibationWinForms.BookLiberation { public partial class AutomatedBackupsForm : Form { - public bool KeepGoingVisible - { - get => keepGoingCb.Visible; - set => keepGoingCb.Visible = value; - } - public bool KeepGoingChecked => keepGoingCb.Checked; - public bool KeepGoing - => keepGoingCb.Visible - && keepGoingCb.Enabled - && keepGoingCb.Checked; + public bool KeepGoing => keepGoingCb.Enabled && keepGoingCb.Checked; public AutomatedBackupsForm() { diff --git a/LibationWinForms/BookLiberation/ProcessorAutomationController.cs b/LibationWinForms/BookLiberation/ProcessorAutomationController.cs index 98663ec0..e553b207 100644 --- a/LibationWinForms/BookLiberation/ProcessorAutomationController.cs +++ b/LibationWinForms/BookLiberation/ProcessorAutomationController.cs @@ -508,7 +508,7 @@ An error occurred while trying to process this book if (!AutomatedBackupsForm.KeepGoing) { - if (AutomatedBackupsForm.KeepGoingVisible && !AutomatedBackupsForm.KeepGoingChecked) + if (!AutomatedBackupsForm.KeepGoingChecked) LogMe.Info("'Keep going' is unchecked"); return; }