Fix formatting in CheckBoxList.cpp.

This commit is contained in:
Jean-François Milants 2022-09-27 21:10:01 +02:00
parent 2400110900
commit 58586d0ad1

View file

@ -107,7 +107,7 @@ void CheckboxList::UpdateSelected(lv_obj_t* object, lv_event_t event) {
if (strcmp(options[i], "")) { if (strcmp(options[i], "")) {
if (object == cbOption[i]) { if (object == cbOption[i]) {
lv_checkbox_set_checked(cbOption[i], true); lv_checkbox_set_checked(cbOption[i], true);
(settingsController.*SetOptionIndex)(MaxItems* screenID + i); (settingsController.*SetOptionIndex)(MaxItems * screenID + i);
} else { } else {
lv_checkbox_set_checked(cbOption[i], false); lv_checkbox_set_checked(cbOption[i], false);
} }