mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-07 20:31:02 -05:00
Disable entire checkbox view when disabled (fixes #2989)
This commit is contained in:
parent
7b149425fa
commit
05d830eb58
1 changed files with 3 additions and 0 deletions
|
@ -218,6 +218,9 @@ open class ExtendedNavigationView @JvmOverloads constructor(
|
|||
val item = items[position] as Item.CheckboxGroup
|
||||
holder.check.setText(item.resTitle)
|
||||
holder.check.isChecked = item.checked
|
||||
|
||||
// Allow disabling the holder
|
||||
holder.itemView.isClickable = item.enabled
|
||||
holder.check.isEnabled = item.enabled
|
||||
}
|
||||
is MultiStateHolder -> {
|
||||
|
|
Loading…
Reference in a new issue