Merge branch 'bugfix/listLVCBBdy-CheckBox-Status' into 'develop'
invoking check box toggle state, only when the check box is enabled. See merge request BPHV_MIPS/mvm_core_ui!875
This commit is contained in:
commit
4fb9c12d90
@ -76,7 +76,9 @@
|
||||
}
|
||||
|
||||
public override func didSelectCell(at index: IndexPath, delegateObject: MVMCoreUIDelegateObject?, additionalData: [AnyHashable: Any]?) {
|
||||
checkbox.isSelected.toggle()
|
||||
if checkbox.isEnabled {
|
||||
checkbox.isSelected.toggle()
|
||||
}
|
||||
}
|
||||
|
||||
//----------------------------------------------------
|
||||
|
||||
Loading…
Reference in New Issue
Block a user