mirror of
https://github.com/SagerNet/sing-box-for-android.git
synced 2025-04-03 20:07:38 +03:00
Fix group adapter
This commit is contained in:
parent
d62fe70db5
commit
7549225ae3
1 changed files with 2 additions and 1 deletions
|
@ -182,6 +182,7 @@ class GroupsFragment : Fragment(), CommandClient.Handler {
|
|||
false
|
||||
binding.itemList.layoutManager = GridLayoutManager(binding.root.context, 2)
|
||||
} else {
|
||||
adapter.group = group
|
||||
adapter.setItems(items)
|
||||
}
|
||||
updateExpand()
|
||||
|
@ -241,7 +242,7 @@ class GroupsFragment : Fragment(), CommandClient.Handler {
|
|||
|
||||
private class ItemAdapter(
|
||||
val groupView: GroupView,
|
||||
val group: OutboundGroup,
|
||||
var group: OutboundGroup,
|
||||
private var items: MutableList<OutboundGroupItem> = mutableListOf()
|
||||
) :
|
||||
RecyclerView.Adapter<ItemGroupView>() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue