fix a glitch at group selecting dialog
This commit is contained in:
parent
971bcbf29f
commit
1422ae1d9d
1 changed files with 1 additions and 1 deletions
|
|
@ -203,8 +203,8 @@ class ContactsAdapter(activity: SimpleActivity, var contactItems: ArrayList<Cont
|
||||||
ContactsHelper(activity).getStoredGroups {
|
ContactsHelper(activity).getStoredGroups {
|
||||||
it.forEach {
|
it.forEach {
|
||||||
items.add(RadioItem(it.id!!.toInt(), it.title))
|
items.add(RadioItem(it.id!!.toInt(), it.title))
|
||||||
items.add(RadioItem(NEW_GROUP_ID, activity.getString(R.string.create_new_group)))
|
|
||||||
}
|
}
|
||||||
|
items.add(RadioItem(NEW_GROUP_ID, activity.getString(R.string.create_new_group)))
|
||||||
showGroupsPicker(items)
|
showGroupsPicker(items)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue