Skip to content

Commit

Permalink
tweak ScheduleScanDialog
Browse files Browse the repository at this point in the history
  • Loading branch information
stevencohn committed May 21, 2024
1 parent 5f353c9 commit ee91047
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
11 changes: 7 additions & 4 deletions OneMore/Commands/Tagging/ScheduleScanDialog.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions OneMore/Commands/Tagging/ScheduleScanDialog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ namespace River.OneMoreAddIn.Commands
using River.OneMoreAddIn.UI;
using System;
using System.Collections.Generic;
using System.Data.SqlTypes;
using System.Linq;
using System.Windows.Forms;
using Resx = Properties.Resources;
Expand Down Expand Up @@ -244,6 +245,12 @@ public void SetPreferredIDs(string[] preferredIDs)
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// Handlers...

private void DoCheckedChanged(object sender, EventArgs e)
{
dateTimePicker.Enabled = laterRadio.Checked;
}


private void DoSelectionsChanged(object sender, EventArgs e)
{
okButton.Enabled = booksFlow.Controls.Cast<MoreCheckBox>().Any(b => b.Checked);
Expand Down

0 comments on commit ee91047

Please sign in to comment.