remove unused setting
This commit is contained in:
parent
dc7ec3b328
commit
bfd494cf93
@ -13,7 +13,7 @@
|
|||||||
<!-- <PublishSingleFile>true</PublishSingleFile> -->
|
<!-- <PublishSingleFile>true</PublishSingleFile> -->
|
||||||
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
||||||
|
|
||||||
<Version>5.1.8.1</Version>
|
<Version>5.1.8.2</Version>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|||||||
@ -6,18 +6,9 @@ namespace LibationWinForms.BookLiberation
|
|||||||
{
|
{
|
||||||
public partial class AutomatedBackupsForm : Form
|
public partial class AutomatedBackupsForm : Form
|
||||||
{
|
{
|
||||||
public bool KeepGoingVisible
|
|
||||||
{
|
|
||||||
get => keepGoingCb.Visible;
|
|
||||||
set => keepGoingCb.Visible = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
public bool KeepGoingChecked => keepGoingCb.Checked;
|
public bool KeepGoingChecked => keepGoingCb.Checked;
|
||||||
|
|
||||||
public bool KeepGoing
|
public bool KeepGoing => keepGoingCb.Enabled && keepGoingCb.Checked;
|
||||||
=> keepGoingCb.Visible
|
|
||||||
&& keepGoingCb.Enabled
|
|
||||||
&& keepGoingCb.Checked;
|
|
||||||
|
|
||||||
public AutomatedBackupsForm()
|
public AutomatedBackupsForm()
|
||||||
{
|
{
|
||||||
|
|||||||
@ -508,7 +508,7 @@ An error occurred while trying to process this book
|
|||||||
|
|
||||||
if (!AutomatedBackupsForm.KeepGoing)
|
if (!AutomatedBackupsForm.KeepGoing)
|
||||||
{
|
{
|
||||||
if (AutomatedBackupsForm.KeepGoingVisible && !AutomatedBackupsForm.KeepGoingChecked)
|
if (!AutomatedBackupsForm.KeepGoingChecked)
|
||||||
LogMe.Info("'Keep going' is unchecked");
|
LogMe.Info("'Keep going' is unchecked");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user