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:
Pfeil, Scott Robert 2022-07-05 13:24:05 +00:00
commit 4fb9c12d90

View File

@ -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()
}
}
//----------------------------------------------------