Skip to content

Commit 9552486

Browse files
committed
Changed the selected inspirationals check to check CheckedItems instead of SelectedItems.
1 parent 6185bd4 commit 9552486

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

MainForm.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ public MainForm()
128128

129129
private async void btnFindSolution_Click(object sender, EventArgs e)
130130
{
131-
if (lvInspirationals.SelectedItems.Count == 0)
131+
if (lvInspirationals.CheckedItems.Count == 0)
132132
{
133133
toolTipError.Show("You have to select at least one available inspirational.", lblInspirationals, 1000);
134134

0 commit comments

Comments
 (0)