Changed CONTACTS_GRID_MIN_COLUMNS_COUNT to 1
This commit is contained in:
parent
fd24f1ed6c
commit
73754bfc9f
1 changed files with 1 additions and 1 deletions
|
@ -248,7 +248,7 @@ class MainActivity : SimpleActivity(), RefreshContactsListener {
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun changeColumnCount() {
|
private fun changeColumnCount() {
|
||||||
val items = (CONTACTS_GRID_MIN_COLUMNS_COUNT..CONTACTS_GRID_MAX_COLUMNS_COUNT).map {
|
val items = (1..CONTACTS_GRID_MAX_COLUMNS_COUNT).map {
|
||||||
RadioItem(it, resources.getQuantityString(R.plurals.column_counts, it, it))
|
RadioItem(it, resources.getQuantityString(R.plurals.column_counts, it, it))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue