Skip to content

Commit

Permalink
fix: 不符合直觉的全选
Browse files Browse the repository at this point in the history
  • Loading branch information
tangge233 committed Oct 18, 2024
1 parent d02ecd5 commit 770d9e3
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,10 @@
End Sub

Private Sub Items_SetSelectAll(TargetStatus As Boolean)
For Each item In CompItemList
For Each item As MyMiniCompItem In PanProjectsMod.Children
item.Checked = TargetStatus
Next
For Each item As MyMiniCompItem In PanProjectsModpack.Children
item.Checked = TargetStatus
Next
SelectedItemList = CompItemList.Where(Function(e) e.Checked).ToList()
Expand Down

0 comments on commit 770d9e3

Please sign in to comment.