mirror of
https://github.com/SagerNet/sing-box-for-android.git
synced 2025-04-04 20:37:40 +03:00
Fix move profile
This commit is contained in:
parent
819364a877
commit
52f0f46436
1 changed files with 4 additions and 0 deletions
|
@ -90,8 +90,10 @@ class ConfigurationFragment : Fragment() {
|
||||||
RecyclerView.Adapter<Holder>() {
|
RecyclerView.Adapter<Holder>() {
|
||||||
|
|
||||||
internal var items: MutableList<Profile> = mutableListOf()
|
internal var items: MutableList<Profile> = mutableListOf()
|
||||||
|
private var isMoving = false
|
||||||
|
|
||||||
internal fun reload() {
|
internal fun reload() {
|
||||||
|
if (isMoving) return
|
||||||
scope.launch(Dispatchers.IO) {
|
scope.launch(Dispatchers.IO) {
|
||||||
items = ProfileManager.list().toMutableList()
|
items = ProfileManager.list().toMutableList()
|
||||||
withContext(Dispatchers.Main) {
|
withContext(Dispatchers.Main) {
|
||||||
|
@ -124,8 +126,10 @@ class ConfigurationFragment : Fragment() {
|
||||||
first.userOrder = previousOrder
|
first.userOrder = previousOrder
|
||||||
updated.add(first)
|
updated.add(first)
|
||||||
notifyItemMoved(from, to)
|
notifyItemMoved(from, to)
|
||||||
|
isMoving = true
|
||||||
GlobalScope.launch(Dispatchers.IO) {
|
GlobalScope.launch(Dispatchers.IO) {
|
||||||
ProfileManager.update(updated)
|
ProfileManager.update(updated)
|
||||||
|
isMoving = false
|
||||||
}
|
}
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue