mirror of
https://github.com/SimpleMobileTools/Simple-Contacts.git
synced 2025-06-05 21:59:27 +02:00
format code
This commit is contained in:
@ -465,9 +465,7 @@ class ContactsAdapter(
|
||||
notifyItemMoved(fromPosition, toPosition)
|
||||
}
|
||||
|
||||
override fun onRowSelected(myViewHolder: ViewHolder?) {
|
||||
|
||||
}
|
||||
override fun onRowSelected(myViewHolder: ViewHolder?) { }
|
||||
|
||||
override fun onRowClear(myViewHolder: ViewHolder?) {
|
||||
onDragEndListener?.invoke()
|
||||
|
@ -22,15 +22,11 @@ class ChangeSortingDialog(val activity: BaseSimpleActivity, private val showCust
|
||||
activity.setupDialogStuff(view, this, R.string.sort_by)
|
||||
}
|
||||
|
||||
currSorting = if (showCustomSorting) {
|
||||
if (config.isCustomOrderSelected) {
|
||||
currSorting = if (showCustomSorting && config.isCustomOrderSelected) {
|
||||
SORT_BY_CUSTOM
|
||||
} else {
|
||||
config.sorting
|
||||
}
|
||||
} else {
|
||||
config.sorting
|
||||
}
|
||||
|
||||
setupSortRadio()
|
||||
setupOrderRadio()
|
||||
|
Reference in New Issue
Block a user